mirror of
https://github.com/restic/restic.git
synced 2025-01-21 06:48:35 +00:00
ea1446f50b
Add the skeleton, but leave filling in the details to later commits.
14 lines
332 B
Go
14 lines
332 B
Go
//go:build darwin || linux
|
|
|
|
package fs
|
|
|
|
import "github.com/restic/restic/internal/restic"
|
|
|
|
func (p *fdMetadataHandle) Xattr(ignoreListError bool) ([]restic.ExtendedAttribute, error) {
|
|
// FIXME
|
|
return xattrFromPath(p.Name(), ignoreListError)
|
|
}
|
|
|
|
func (p *fdMetadataHandle) SecurityDescriptor() (*[]byte, error) {
|
|
return nil, nil
|
|
}
|