From 60823d1878563c398373ff2c761dd91a588af3b5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 9 Mar 2006 17:39:24 +0000 Subject: r14078: move ldb_global_init() to the main smbd code, to fix the process_model standard metze (This used to be commit a465126e15490c5605064eb2387fb589d312db7b) --- source4/smbd/server.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/smbd/server.c') diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 3036966f6a0..057cdfd5e89 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? */ -- cgit