2015-05-05 19:06:36 -04:00
|
|
|
package restic
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"syscall"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
2015-05-05 21:47:02 -04:00
|
|
|
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
2015-05-05 19:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
2015-05-14 17:06:11 -04:00
|
|
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2015-08-14 09:57:47 -04:00
|
|
|
|
|
|
|
|
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 }
|