mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
18 lines
354 B
Go
18 lines
354 B
Go
|
// +build darwin dragonfly freebsd !android,linux netbsd openbsd solaris
|
||
|
// +build cgo
|
||
|
|
||
|
package sftp
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
func fileStatFromInfoOs(fi os.FileInfo, flags *uint32, fileStat *FileStat) {
|
||
|
if statt, ok := fi.Sys().(*syscall.Stat_t); ok {
|
||
|
*flags |= ssh_FILEXFER_ATTR_UIDGID
|
||
|
fileStat.UID = statt.Uid
|
||
|
fileStat.GID = statt.Gid
|
||
|
}
|
||
|
}
|