summaryrefslogtreecommitdiff
path: root/source3/web/startstop.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/web/startstop.c')
-rw-r--r--source3/web/startstop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/web/startstop.c b/source3/web/startstop.c
index b24410a89f..81350e62f5 100644
--- a/source3/web/startstop.c
+++ b/source3/web/startstop.c
@@ -36,7 +36,7 @@ void start_smbd(void)
}
if (asprintf(&binfile, "%s/smbd", get_dyn_SBINDIR()) > 0) {
- become_daemon(true, false);
+ become_daemon(true, false, false);
execl(binfile, binfile, "-D", NULL);
}
exit(0);
@@ -56,7 +56,7 @@ void start_nmbd(void)
}
if (asprintf(&binfile, "%s/nmbd", get_dyn_SBINDIR()) > 0) {
- become_daemon(true, false);
+ become_daemon(true, false, false);
execl(binfile, binfile, "-D", NULL);
}
exit(0);
@@ -76,7 +76,7 @@ void start_winbindd(void)
}
if (asprintf(&binfile, "%s/winbindd", get_dyn_SBINDIR()) > 0) {
- become_daemon(true, false);
+ become_daemon(true, false, false);
execl(binfile, binfile, NULL);
}
exit(0);