We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf686b commit 150ca93Copy full SHA for 150ca93
src/runtime/runtime.c
@@ -472,6 +472,13 @@ char* find_fusermount(bool verbose) {
472
473
if (pid == 0) {
474
// Child process
475
+
476
+ // close stdout and stderr if not in verbose mode
477
+ if (!verbose) {
478
+ close(1);
479
+ close(2);
480
+ }
481
482
char* args[] = {fusermount_full_path, "--version", NULL};
483
execvp(fusermount_full_path, args);
484
// If execvp returns, it means the executable was not found
0 commit comments