forked from TrueCloudLab/restic
0666c4d244
This way, they can be inlined and dead code can be removed on Windows. Also fixed some comments.
11 lines
326 B
Go
11 lines
326 B
Go
package restic
|
|
|
|
import "syscall"
|
|
|
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
return nil
|
|
}
|
|
|
|
func (s statT) atim() syscall.Timespec { return s.Atimespec }
|
|
func (s statT) mtim() syscall.Timespec { return s.Mtimespec }
|
|
func (s statT) ctim() syscall.Timespec { return s.Ctimespec }
|