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
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// nodeRestoreExtendedAttributes is a no-op
|
2024-11-15 15:55:29 -05:00
|
|
|
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string, _ func(xattrName string) bool) error {
|
2024-11-03 13:27:58 +01:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// nodeFillExtendedAttributes is a no-op
|
2025-09-21 19:24:48 +02:00
|
|
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool, _ func(format string, args ...any)) error {
|
2024-11-03 13:27:58 +01:00
|
|
|
return nil
|
|
|
|
|
}
|