mirror of https://github.com/restic/restic.git
19 lines
428 B
Go
19 lines
428 B
Go
//go:build aix || dragonfly || openbsd
|
|
// +build aix dragonfly openbsd
|
|
|
|
package fs
|
|
|
|
import (
|
|
"github.com/restic/restic/internal/restic"
|
|
)
|
|
|
|
// nodeRestoreExtendedAttributes is a no-op
|
|
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string, _ func(xattrName string) bool) error {
|
|
return nil
|
|
}
|
|
|
|
// nodeFillExtendedAttributes is a no-op
|
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
return nil
|
|
}
|