2015-02-03 20:18:19 +00:00
|
|
|
package restic
|
|
|
|
|
2016-03-28 13:26:04 +00:00
|
|
|
import "syscall"
|
2015-04-25 00:36:54 +00:00
|
|
|
|
2015-05-14 21:06:11 +00:00
|
|
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
|
|
return nil
|
|
|
|
}
|
2015-08-14 13:57:47 +00: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 }
|