diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-09 17:39:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:56:49 -0500 |
commit | 60823d1878563c398373ff2c761dd91a588af3b5 (patch) | |
tree | ac4f0230228bda31747845db56cb41c87d15fc3c /source4/smbd | |
parent | 6500444a2d74c7d921e7300939f459a83b95ea14 (diff) | |
download | samba-60823d1878563c398373ff2c761dd91a588af3b5.tar.gz samba-60823d1878563c398373ff2c761dd91a588af3b5.tar.bz2 samba-60823d1878563c398373ff2c761dd91a588af3b5.zip |
r14078: move ldb_global_init() to the main smbd code,
to fix the process_model standard
metze
(This used to be commit a465126e15490c5605064eb2387fb589d312db7b)
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/server.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 3036966f6a..057cdfd5e8 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -30,6 +30,7 @@ #include "system/dir.h" #include "system/filesys.h" #include "build.h" +#include "ldb/include/ldb.h" #include "registry/registry.h" #include "ntvfs/ntvfs.h" #include "ntptr/ntptr.h" @@ -225,7 +226,9 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ exit(1); } - gensec_init(); + ldb_global_init(); /* FIXME: */ + + gensec_init(); /* FIXME: */ registry_init(); /* FIXME: maybe run this in the initialization function of the winreg RPC server instead? */ |