2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-08 12:00:49 +00:00
restic/internal/node_darwin.go
Alexander Neumann 83d1a46526 Moves files
2017-07-23 14:19:13 +02:00

12 lines
335 B
Go

package restic
import "syscall"
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}
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 }