restic/internal/restic/node_freebsd.go

18 lines
412 B
Go
Raw Normal View History

2020-07-22 23:35:10 +02:00
// +build freebsd
2019-03-16 20:52:37 +01:00
package restic
import "syscall"
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}
2019-03-06 15:41:49 +01:00
func (node Node) device() uint64 {
return 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 }