github.com/fawick/restic@v0.1.1-0.20171126184616-c02923fbfc79/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 }