summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-03-14 16:35:16 -0400
committerSam Anthony <sam@samanthony.xyz>2026-03-14 16:35:16 -0400
commitb57a199eb44dff5af3bdb7866b818544e1d270ee (patch)
tree0ee7df898e993a5075a04b337e088e08ce582073 /back/cmd/authfs/err.go
parent51c51c16bf4839940124695fbee65c152f6d29c5 (diff)
downloadbuth-b57a199eb44dff5af3bdb7866b818544e1d270ee.zip
authfs: implement Rclunk and Ropen
Diffstat (limited to 'back/cmd/authfs/err.go')
-rw-r--r--back/cmd/authfs/err.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/back/cmd/authfs/err.go b/back/cmd/authfs/err.go
index 81da2ba..4f4dbbf 100644
--- a/back/cmd/authfs/err.go
+++ b/back/cmd/authfs/err.go
@@ -7,4 +7,5 @@ var (
ErrFileNotExist = errors.New("file does not exist")
ErrFidExist = errors.New("fid already exists")
ErrFidNotExist = errors.New("fid does not exist")
+ ErrPerm = errors.New("permission denied")
)