diff options
author | Tim Potter <tpot@samba.org> | 2002-01-25 05:16:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-25 05:16:40 +0000 |
commit | 01a1516f1524881eec9f95398fd523b5e093d37e (patch) | |
tree | 24fb8539409df65c4226cc941efd76fb3249a9ac | |
parent | 9731bbe06d86edfb4584d79a57299e4969ba5a46 (diff) | |
download | samba-01a1516f1524881eec9f95398fd523b5e093d37e.tar.gz samba-01a1516f1524881eec9f95398fd523b5e093d37e.tar.bz2 samba-01a1516f1524881eec9f95398fd523b5e093d37e.zip |
Initialise password server to "*" in init_globals()
(This used to be commit 97b243c488e8b976e40c6d873282a153f80c06e4)
-rw-r--r-- | source3/param/loadparm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 227e44e95b..528ab6492b 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1236,6 +1236,7 @@ static void init_globals(void) string_set(&Globals.szLogonPath, "\\\\%N\\%U\\profile"); string_set(&Globals.szNameResolveOrder, "lmhosts wins host bcast"); + string_set(&Globals.szPasswordServer, "*"); Globals.bLoadPrinters = True; Globals.max_packet = 65535; |