Skip to content

Commit

Permalink
fix: allow_other was not passed through to fuse
Browse files Browse the repository at this point in the history
fixes: #13
  • Loading branch information
andrew-grechkin committed Nov 12, 2024
1 parent 75b56c1 commit 5d3eed3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.12 FATAL_ERROR)

project (fuse3-p7zip
VERSION 1.2.2
VERSION 1.2.3
DESCRIPTION "fuse3 file system that uses the p7zip library to mount archives"
LANGUAGES CXX
)
Expand Down
2 changes: 1 addition & 1 deletion src/fuse3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ int Fuse::Params::process_arg(Fuse::Params* fuse, const char* arg, int key, stru
case FUSE_OPT_KEY_OPT:
if (strcmp("allow_other", arg) == 0) {
cmd_params.allow_other = true;
return ARG_DISCARD;
return ARG_KEEP;
}
case FUSE_OPT_KEY_NONOPT:
cmd_params.cli_args.emplace_back(arg);
Expand Down

0 comments on commit 5d3eed3

Please sign in to comment.