2024-11-05 15:52:45 +00:00
|
|
|
//go:build aix || dragonfly || netbsd || openbsd
|
|
|
|
// +build aix dragonfly netbsd openbsd
|
2024-11-03 12:27:58 +00:00
|
|
|
|
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
|
|
)
|
|
|
|
|
|
|
|
// nodeRestoreExtendedAttributes is a no-op
|
2024-11-15 20:55:29 +00:00
|
|
|
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string, _ func(xattrName string) bool) error {
|
2024-11-03 12:27:58 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// nodeFillExtendedAttributes is a no-op
|
|
|
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
|
|
return nil
|
|
|
|
}
|