From 4e8e188d2469f6835fb1fc4f885f8e6cbb2cab07 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 10 Nov 2024 15:18:05 -0600 Subject: [PATCH] fuse unit tests and fixes --- repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp b/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp index 82aa05ea..e30fc77b 100644 --- a/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp +++ b/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp @@ -88,7 +88,7 @@ auto fuse_drive_base::check_access(const std::string &api_path, // Check allow execute if ((mask & X_OK) == X_OK) { if ((effective_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0) { - return api_error::permission_denied; + return api_error::access_denied; } }