mirror of
https://github.com/restic/restic.git
synced 2025-03-06 03:34:28 +00:00
18 lines
397 B
Go
18 lines
397 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) error {
|
|
return nil
|
|
}
|
|
|
|
// nodeFillExtendedAttributes is a no-op
|
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
return nil
|
|
}
|