restic/internal/restic/node_darwin.go

12 lines
326 B
Go
Raw Normal View History

package restic
import "syscall"
2015-04-25 00:36:54 +00:00
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}
func (s statT) atim() syscall.Timespec { return s.Atimespec }
func (s statT) mtim() syscall.Timespec { return s.Mtimespec }
func (s statT) ctim() syscall.Timespec { return s.Ctimespec }