summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2017-12-19 16:30:08 +1300
committerAndrew Bartlett <abartlet@samba.org>2017-12-19 11:24:29 +0100
commit0806ff7dfd3f982226e4cd9b923a0e570b765f0c (patch)
tree225da71f040e01791e703b83832314c696045770 /source4/smbd
parent38ed5920764d1490bfa4201f62d61cbcd8d8166e (diff)
downloadsamba-0806ff7dfd3f982226e4cd9b923a0e570b765f0c.tar.gz
s4:samba: Fix default to be running samba as a deamon
Commit 8736013dc42c5755b75bbb2e843a290bcd545909 got the (confusing) sense of opt_fork wrong. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13129 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Dec 19 11:24:29 CET 2017 on sn-devel-144
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c
index 006f76bc859..85dea2626a1 100644
--- a/source4/smbd/server.c
+++ b/source4/smbd/server.c
@@ -450,7 +450,7 @@ static int binary_smbd_main(const char *binary_name,
"not allowed together with -D|--daemon\n\n");
poptPrintUsage(pc, stderr, 0);
return 1;
- } else if (!opt_interactive && !opt_fork) {
+ } else if (!opt_interactive && opt_fork) {
/* default is --daemon */
opt_daemon = true;
}