mirror of
https://github.com/restic/restic.git
synced 2025-04-28 01:40:48 +00:00
18 lines
422 B
Go
18 lines
422 B
Go
![]() |
// +build freebsd,!go1.12
|
||
|
|
||
|
package restic
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (node Node) device() int {
|
||
|
return int(node.Device)
|
||
|
}
|
||
|
|
||
|
func (s statUnix) atim() syscall.Timespec { return s.Atimespec }
|
||
|
func (s statUnix) mtim() syscall.Timespec { return s.Mtimespec }
|
||
|
func (s statUnix) ctim() syscall.Timespec { return s.Ctimespec }
|