diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-13 11:41:47 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:49:52 +0100 |
commit | aa32619c5c910b9f5989f44de21621db5ef7c357 (patch) | |
tree | 670cd1bc010718f21ebbf346dcd6dafa9cd25d8a /source4/lib | |
parent | 45d349eb80ebd6b08a8bbcb66f657e89c3480a92 (diff) | |
download | samba-aa32619c5c910b9f5989f44de21621db5ef7c357.tar.gz samba-aa32619c5c910b9f5989f44de21621db5ef7c357.tar.bz2 samba-aa32619c5c910b9f5989f44de21621db5ef7c357.zip |
r26426: Remove uses of global_loadparm.
(This used to be commit e1d177c8c1101965479f7ade2270490cd6fae4f2)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/tools/ad2oLschema.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/tools/ad2oLschema.c b/source4/lib/ldb/tools/ad2oLschema.c index 5fcf752578..c8974d7e7d 100644 --- a/source4/lib/ldb/tools/ad2oLschema.c +++ b/source4/lib/ldb/tools/ad2oLschema.c @@ -37,6 +37,7 @@ #include "tools/cmdline.h" #include "tools/convert.h" #include "param/param.h" +#include "lib/cmdline/popt_common.h" struct schema_conv { int count; @@ -677,7 +678,7 @@ static struct schema_conv process_convert(struct ldb_context *ldb, enum convert_ } } - target_str = lp_parm_string(global_loadparm, NULL, "convert", "target"); + target_str = lp_parm_string(cmdline_lp_ctx, NULL, "convert", "target"); if (!target_str || strcasecmp(target_str, "openldap") == 0) { target = TARGET_OPENLDAP; |