2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-30 15:40:50 +00:00
restic/src/restic/node_freebsd.go

19 lines
451 B
Go
Raw Normal View History

package restic
import (
"os"
"syscall"
)
func (node *Node) OpenForReading() (*os.File, error) {
2015-05-06 01:47:02 +00:00
return os.OpenFile(node.path, os.O_RDONLY, 0)
}
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 }