aboutsummaryrefslogtreecommitdiff
path: root/internal/fusefrontend/xattr_notlinux.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/fusefrontend/xattr_notlinux.go')
-rw-r--r--internal/fusefrontend/xattr_notlinux.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/fusefrontend/xattr_notlinux.go b/internal/fusefrontend/xattr_notlinux.go
new file mode 100644
index 0000000..aa9c981
--- /dev/null
+++ b/internal/fusefrontend/xattr_notlinux.go
@@ -0,0 +1,8 @@
+// +build !linux
+
+// Package fusefrontend interfaces directly with the go-fuse library.
+package fusefrontend
+
+func disallowedXAttrName(attr string) bool {
+ return false
+}