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