2024-12-15 23:59:17 +00:00
|
|
|
//go:build aix || dragonfly || openbsd
|
|
|
|
|
// +build aix dragonfly openbsd
|
2024-11-03 13:27:58 +01:00
|
|
|
|
|
|
|
|
package fs
|
|
|
|
|
|
2025-09-23 20:01:09 +02:00
|
|
|
import "github.com/restic/restic/internal/data"
|
2024-11-03 13:27:58 +01:00
|
|
|
|
|
|
|
|
// nodeRestoreExtendedAttributes is a no-op
|
2025-09-23 20:01:09 +02:00
|
|
|
func nodeRestoreExtendedAttributes(_ *data.Node, _ string, _ func(xattrName string) bool) error {
|
2024-11-03 13:27:58 +01:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// nodeFillExtendedAttributes is a no-op
|
2025-09-23 20:01:09 +02:00
|
|
|
func nodeFillExtendedAttributes(_ *data.Node, _ string, _ bool, _ func(format string, args ...any)) error {
|
2024-11-03 13:27:58 +01:00
|
|
|
return nil
|
|
|
|
|
}
|