diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:38:20 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:38:20 +0000 |
commit | 8d08fb732349e50d287aa864fbf57ecc51b55562 (patch) | |
tree | ce223032e7634e077420ccdcf605e1bf39cf8dc9 /source3/nmbd | |
parent | 04452b09754a420486da5fb2587528e52538ba0f (diff) | |
download | samba-8d08fb732349e50d287aa864fbf57ecc51b55562.tar.gz samba-8d08fb732349e50d287aa864fbf57ecc51b55562.tar.bz2 samba-8d08fb732349e50d287aa864fbf57ecc51b55562.zip |
jean-f spotted race condition on generation of sam sid, from starting
nmbd and smbd. nmbd is now client: smbd is solely responsible for
creating sam_name.SID
(This used to be commit 50fa4822df679b4d54b5a868179594ec087e811f)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 46c24aee7d..a81f9e4bfe 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -677,7 +677,7 @@ static void usage(char *pname) reload_services( True ); - if (!pwdb_initialise(True)) + if (!pwdb_initialise(False)) { exit(1); } |