summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-03-14 17:14:10 -0400
committerSam Anthony <sam@samanthony.xyz>2026-03-14 17:14:10 -0400
commit4e7f559874df9fe8dc17ceec89fa5087d011a363 (patch)
tree4d25b5e2556640e29278c415df7e0f101b6900af /back/cmd/authfs/err.go
parenta7de24661c55a026dd208c8a62c50d6682d39859 (diff)
downloadbuth-4e7f559874df9fe8dc17ceec89fa5087d011a363.zip
authfs: implement Rstat
Diffstat (limited to 'back/cmd/authfs/err.go')
-rw-r--r--back/cmd/authfs/err.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/back/cmd/authfs/err.go b/back/cmd/authfs/err.go
index 7c2b192..a1e62f8 100644
--- a/back/cmd/authfs/err.go
+++ b/back/cmd/authfs/err.go
@@ -8,7 +8,7 @@ var (
ErrFidNotExist = errors.New("fid does not exist")
ErrFileExist = errors.New("file already exists")
ErrFileNotExist = errors.New("file does not exist")
- ErrNewFidExist = errors.New("newfid already exists")
+ ErrNewfidExist = errors.New("newfid already exists")
ErrPerm = errors.New("permission denied")
ErrWalkNonDir = errors.New("cannot walk in non-directory")
)