Do not daemonize to early
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 17 Mar 2023 09:04:28 +0000 (09:04 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 12 May 2023 22:29:03 +0000 (23:29 +0100)
fuse_session_mount() may print errors to stderr, if we daemonize before
that than these are lost.

example/passthrough_hp.cc

index a0480e52deb81ddfaf145614353fb7ebc275ae61..53efd9f6d475bc0f4c39422b714d1cc2befa78f4 100644 (file)
@@ -1288,8 +1288,6 @@ int main(int argc, char *argv[]) {
     // Don't apply umask, use modes exactly as specified
     umask(0);
 
-    fuse_daemonize(fs.foreground);
-
     // Mount and run main loop
     loop_config = fuse_loop_cfg_create();
 
@@ -1298,6 +1296,9 @@ int main(int argc, char *argv[]) {
 
     if (fuse_session_mount(se, argv[2]) != 0)
         goto err_out3;
+
+    fuse_daemonize(fs.foreground);
+
     if (options.count("single"))
         ret = fuse_session_loop(se);
     else