summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tools/cmdline.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-02-04 09:49:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:46 -0500
commitf1b2c6d686763078fbc7ce97bc63b68844d457da (patch)
tree863154458375f9a7e659ac684dbeb18f84dff1c8 /source4/lib/ldb/tools/cmdline.c
parent15f73e6404a9c83140892e51477cf38a24252027 (diff)
downloadsamba-f1b2c6d686763078fbc7ce97bc63b68844d457da.tar.gz
samba-f1b2c6d686763078fbc7ce97bc63b68844d457da.tar.bz2
samba-f1b2c6d686763078fbc7ce97bc63b68844d457da.zip
r13340: The gensec_init() needs to be after the popt processing, as it
disables modules based on parametric options. Andrew Bartlett (This used to be commit db32a81f3ea661e2308cccca8d6a251a3d57337e)
Diffstat (limited to 'source4/lib/ldb/tools/cmdline.c')
-rw-r--r--source4/lib/ldb/tools/cmdline.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/lib/ldb/tools/cmdline.c b/source4/lib/ldb/tools/cmdline.c
index 446923f282..1926df4c86 100644
--- a/source4/lib/ldb/tools/cmdline.c
+++ b/source4/lib/ldb/tools/cmdline.c
@@ -72,8 +72,6 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const
};
#ifdef _SAMBA_BUILD_
- gensec_init();
-
r = ldb_register_samba_handlers(ldb);
if (r != 0) {
goto failed;
@@ -198,6 +196,9 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const
}
#ifdef _SAMBA_BUILD_
+ /* Must be after we have processed command line options */
+ gensec_init();
+
if (ldb_set_opaque(ldb, "sessionInfo", system_session(ldb))) {
goto failed;
}