summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tools
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-06-21 07:52:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:18:37 -0500
commit5be159f304411b58c417a979c819f9ab211a0337 (patch)
tree332eede05fc983d4a1fb872618162f98d0c2f990 /source4/lib/ldb/tools
parenteb0a13025aa6d693c7e9fa213ef04fa58cf60e3e (diff)
downloadsamba-5be159f304411b58c417a979c819f9ab211a0337.tar.gz
samba-5be159f304411b58c417a979c819f9ab211a0337.tar.bz2
samba-5be159f304411b58c417a979c819f9ab211a0337.zip
r7804: added the samba specific ldif handlers into the tree, but don't enable
them just yet. I have tested them, and they work fine, but enabling them will break code in rpc_server/ and samdb, so we need to fix that first (This used to be commit 07d459406b4c63e49141e0e533e1274b4052abf9)
Diffstat (limited to 'source4/lib/ldb/tools')
-rw-r--r--source4/lib/ldb/tools/cmdline.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source4/lib/ldb/tools/cmdline.c b/source4/lib/ldb/tools/cmdline.c
index 1f4a7544a5..31d3f2662a 100644
--- a/source4/lib/ldb/tools/cmdline.c
+++ b/source4/lib/ldb/tools/cmdline.c
@@ -36,9 +36,9 @@
struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const char **argv,
void (*usage)(void))
{
- struct ldb_cmdline options, *ret;
+ struct ldb_cmdline options, *ret=NULL;
poptContext pc;
- int num_options = 0;
+ int r, num_options = 0;
char opt;
struct poptOption popt_options[] = {
POPT_AUTOHELP
@@ -65,6 +65,10 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const
#ifdef _SAMBA_BUILD_
ldbsearch_init_subsystems;
+ r = ldb_register_samba_handlers(ldb);
+ if (r != 0) {
+ goto failed;
+ }
#endif
ret = talloc_zero(ldb, struct ldb_cmdline);