mirror of
https://github.com/octoleo/restic.git
synced 2024-11-27 15:26:37 +00:00
12 lines
314 B
Go
12 lines
314 B
Go
package fs
|
|
|
|
import "syscall"
|
|
|
|
func nodeRestoreSymlinkTimestamps(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 }
|