summaryrefslogtreecommitdiff
path: root/example/passthrough_hp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'example/passthrough_hp.cc')
-rw-r--r--example/passthrough_hp.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc
index a0480e5..53efd9f 100644
--- a/example/passthrough_hp.cc
+++ b/example/passthrough_hp.cc
@@ -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