2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-27 15:26:37 +00:00
restic/internal/fs/node_unix.go
2024-08-31 18:40:36 +02:00

13 lines
153 B
Go

//go:build !windows
// +build !windows
package fs
import (
"os"
)
func lchown(name string, uid, gid int) error {
return os.Lchown(name, uid, gid)
}