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

@ -22,3 +22,7 @@ func (node *Node) fillTimes(stat *syscall.Stat_t) {
func changeTime(stat *syscall.Stat_t) time.Time {
return time.Unix(stat.Ctim.Unix())
}
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}