2018-06-16 08:48:45 +02:00
|
|
|
package restic
|
|
|
|
|
2024-02-23 01:31:20 +01:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
)
|
2018-06-16 08:48:45 +02:00
|
|
|
|
2024-02-23 01:31:20 +01:00
|
|
|
func (node Node) restoreSymlinkTimestamps(_ string, _ [2]syscall.Timespec) error {
|
2018-06-16 08:48:45 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-18 23:39:42 +02:00
|
|
|
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 }
|
2018-06-16 08:48:45 +02:00
|
|
|
|
2024-05-17 22:18:20 +02:00
|
|
|
// restoreExtendedAttributes is a no-op on netbsd.
|
|
|
|
func (node Node) restoreExtendedAttributes(_ string) error {
|
|
|
|
return nil
|
2018-06-16 08:48:45 +02:00
|
|
|
}
|
|
|
|
|
2024-05-17 22:18:20 +02:00
|
|
|
// fillExtendedAttributes is a no-op on netbsd.
|
|
|
|
func (node *Node) fillExtendedAttributes(_ string, _ bool) error {
|
|
|
|
return nil
|
2018-06-16 08:48:45 +02:00
|
|
|
}
|
|
|
|
|
2024-05-17 22:18:20 +02:00
|
|
|
// IsListxattrPermissionError is a no-op on netbsd.
|
2024-01-31 20:48:03 +01:00
|
|
|
func IsListxattrPermissionError(_ error) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-02-23 01:31:20 +01:00
|
|
|
// restoreGenericAttributes is no-op on netbsd.
|
2024-02-23 01:52:26 +01:00
|
|
|
func (node *Node) restoreGenericAttributes(_ string, warn func(msg string)) error {
|
|
|
|
return node.handleAllUnknownGenericAttributesFound(warn)
|
2024-02-23 01:31:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// fillGenericAttributes is a no-op on netbsd.
|
|
|
|
func (node *Node) fillGenericAttributes(_ string, _ os.FileInfo, _ *statT) (allowExtended bool, err error) {
|
|
|
|
return true, nil
|
|
|
|
}
|