node/Linux: Implement setting timestamps for symlinks

This commit is contained in:
Alexander Neumann
2015-05-14 23:06:11 +02:00
parent af06376b5b
commit 44219c5afe
5 changed files with 62 additions and 9 deletions

View File

@@ -18,3 +18,7 @@ func (node *Node) fillTimes(stat *syscall.Stat_t) {
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
node.AccessTime = time.Unix(stat.Atimespec.Unix())
}
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}