diff options
author | Jeremy Allison <jra@samba.org> | 1998-05-19 04:45:40 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-05-19 04:45:40 +0000 |
commit | d9e4b23674e4084b2fd88a5b2e3b0ffea752568a (patch) | |
tree | 2768a83d06eecec56fe3566e69ea3b8313a9092a /source3/nmbd | |
parent | 118827376f8ccedb455e81b7d2b3bff029cde457 (diff) | |
download | samba-d9e4b23674e4084b2fd88a5b2e3b0ffea752568a.tar.gz samba-d9e4b23674e4084b2fd88a5b2e3b0ffea752568a.tar.bz2 samba-d9e4b23674e4084b2fd88a5b2e3b0ffea752568a.zip |
Forgot to add the initialize_password_db() call to nmbd also.
Jeremy.
(This used to be commit 2f9f0a88e8220575edb43a9945d0b60829efa840)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 39f5087497..1bb7ed55e4 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -566,6 +566,9 @@ int main(int argc,char *argv[]) charset_initialise(); + if(!initialize_password_db()) + exit(1); + #ifdef LMHOSTSFILE pstrcpy( host_file, LMHOSTSFILE ); #endif |