forked from TrueCloudLab/restic
19 lines
391 B
Go
19 lines
391 B
Go
|
//go:build aix || netbsd || openbsd
|
||
|
// +build aix netbsd openbsd
|
||
|
|
||
|
package fs
|
||
|
|
||
|
import (
|
||
|
"github.com/restic/restic/internal/restic"
|
||
|
)
|
||
|
|
||
|
// nodeRestoreExtendedAttributes is a no-op
|
||
|
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// nodeFillExtendedAttributes is a no-op
|
||
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
||
|
return nil
|
||
|
}
|