summaryrefslogtreecommitdiff
path: root/source3/param/loadparm.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-02-10 12:42:27 -0800
committerJeremy Allison <jra@samba.org>2010-02-10 12:42:27 -0800
commitf2d7d9774e3dafc643567605dd1eef908b6ded1a (patch)
tree05e3db806215ee7e397f5f998568ca71b36c94da /source3/param/loadparm.c
parentc2f3ed48c5ac253bb17387800579f94d933b71e1 (diff)
downloadsamba-f2d7d9774e3dafc643567605dd1eef908b6ded1a.tar.gz
samba-f2d7d9774e3dafc643567605dd1eef908b6ded1a.tar.bz2
samba-f2d7d9774e3dafc643567605dd1eef908b6ded1a.zip
Revert "Change the default of "nmbd bind explicit broadcast" to "no""
This reverts commit 84fba3c1bc962804259f201d465acfdf0cd3c6a8. Now we have a "processed packet queue" in nmbd we can go back to doing this by default. Jeremy.
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r--source3/param/loadparm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 3ada45e2ca..8308e99566 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -4969,10 +4969,10 @@ static void init_globals(bool first_time_only)
string_set(&Globals.szPidDir, get_dyn_PIDDIR());
string_set(&Globals.szSocketAddress, "0.0.0.0");
/*
- * By default don't support explicit binding to broadcast
- * addresses (until the nmbd "process twice" bug is fixed).
+ * By default support explicit binding to broadcast
+ * addresses.
*/
- Globals.bNmbdBindExplicitBroadcast = false;
+ Globals.bNmbdBindExplicitBroadcast = true;
if (asprintf(&s, "Samba %s", samba_version_string()) < 0) {
smb_panic("init_globals: ENOMEM");