diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-03 15:53:17 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:28 +0100 |
commit | ab69eb8d8901d23794c6a298718e67656ef4820e (patch) | |
tree | cd415ecd2aee4caa9e47f6c442d0d23b2f443b9c /source4/smbd | |
parent | 0a2f1a46a02d2c9497d05d7e534829dc6e9430dc (diff) | |
download | samba-ab69eb8d8901d23794c6a298718e67656ef4820e.tar.gz samba-ab69eb8d8901d23794c6a298718e67656ef4820e.tar.bz2 samba-ab69eb8d8901d23794c6a298718e67656ef4820e.zip |
r26250: Avoid global_loadparm in a couple more places.
(This used to be commit 2c6b755309fdf685cd0b0564272bf83038574a43)
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 87bab39bd1..faddd23937 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -278,7 +278,7 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ /* Do *not* remove this, until you have removed * passdb/secrets.c, and proved that Samba still builds... */ /* Setup the SECRETS subsystem */ - if (!secrets_init()) { + if (!secrets_init(global_loadparm)) { exit(1); } |