github.com/advanderveer/restic@v0.8.1-0.20171209104529-42a8c19aaea6/internal/restic/node_freebsd.go (about)

     1  package restic
     2  
     3  import "syscall"
     4  
     5  func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
     6  	return nil
     7  }
     8  
     9  func (s statUnix) atim() syscall.Timespec { return s.Atimespec }
    10  func (s statUnix) mtim() syscall.Timespec { return s.Mtimespec }
    11  func (s statUnix) ctim() syscall.Timespec { return s.Ctimespec }