Loading src/client/fuse/fuse_client.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -1126,9 +1126,13 @@ main(int argc, char* argv[]) { fuse_loop_cfg_destroy(config); config = NULL; #else struct fuse_loop_config config; memset(&config, 0, sizeof(config)); config.clone_fd = opts.clone_fd; config.max_idle_threads = opts.max_idle_threads; // for older fuse versions like on the ubuntu22 ret = fuse_session_loop_mt( se, NULL); // second argument should be checked!!! ret = fuse_session_loop_mt(se, &config); #endif } Loading Loading
src/client/fuse/fuse_client.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -1126,9 +1126,13 @@ main(int argc, char* argv[]) { fuse_loop_cfg_destroy(config); config = NULL; #else struct fuse_loop_config config; memset(&config, 0, sizeof(config)); config.clone_fd = opts.clone_fd; config.max_idle_threads = opts.max_idle_threads; // for older fuse versions like on the ubuntu22 ret = fuse_session_loop_mt( se, NULL); // second argument should be checked!!! ret = fuse_session_loop_mt(se, &config); #endif } Loading