restic/src/restic/node_openbsd.go

12 lines
320 B
Go
Raw Normal View History

2015-05-05 20:13:55 +02:00
package restic
import "syscall"
2015-05-05 20:13:55 +02:00
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
return nil
}
func (s statUnix) atim() syscall.Timespec { return s.Atim }
func (s statUnix) mtim() syscall.Timespec { return s.Mtim }
func (s statUnix) ctim() syscall.Timespec { return s.Ctim }