diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bc84a3..07372c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ) diff --git a/src/fuse3.cpp b/src/fuse3.cpp index 92cc57b..40f7ee1 100644 --- a/src/fuse3.cpp +++ b/src/fuse3.cpp @@ -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);