2024-12-16 00:59:17 +01: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 21:55:29 +01: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
|
|
|
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
|
|
return nil
|
|
|
|
}
|