2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 14:40:49 +00:00
restic/src/restic/node_darwin.go

19 lines
431 B
Go
Raw Normal View History

package restic
2015-02-03 20:32:01 +00:00
import (
"os"
"syscall"
)
2015-04-25 00:36:54 +00:00
func (node *Node) OpenForReading() (*os.File, error) {
2015-04-25 17:02:19 +00:00
return os.Open(node.path)
2015-04-25 00:36:54 +00:00
}
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 }