diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-15 04:19:57 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-15 04:19:57 +0000 |
commit | e8b4a1f8bc4424ce69c1de8e21677ebebde316bc (patch) | |
tree | e0d0bcb8340996c3d9d6dacc320a9299996a3a61 | |
parent | 8582358d54f382bf77adf03fcfbd3653063341e4 (diff) | |
download | samba-e8b4a1f8bc4424ce69c1de8e21677ebebde316bc.tar.gz samba-e8b4a1f8bc4424ce69c1de8e21677ebebde316bc.tar.bz2 samba-e8b4a1f8bc4424ce69c1de8e21677ebebde316bc.zip |
remove -B and default to dual-daemon mode (-Y to run as a single process)
(This used to be commit 369a914ebefd5625af19b76d71b502e5e13a7147)
-rw-r--r-- | source3/nsswitch/winbindd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 507b5f7ef7..ef55fe5123 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -25,7 +25,7 @@ #include "winbindd.h" BOOL opt_nocache = False; -BOOL opt_dual_daemon = False; +BOOL opt_dual_daemon = True; /***************************************************************************** stubb functions @@ -776,7 +776,7 @@ int main(int argc, char **argv) { "stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" }, { "foreground", 'F', POPT_ARG_VAL, &Fork, False, "Daemon in foreground mode" }, { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" }, - { "dual-daemon", 'B', POPT_ARG_VAL, &opt_dual_daemon, True, "Dual daemon mode" }, + { "single-daemon", 'Y', POPT_ARG_VAL, &opt_dual_daemon, False, "Single daemon mode" }, { "no-caching", 'n', POPT_ARG_VAL, &opt_nocache, False, "Disable caching" }, POPT_COMMON_SAMBA POPT_TABLEEND |