summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tools/ldbdel.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-11-01 18:45:25 +1100
committerAndrew Tridgell <tridge@samba.org>2010-11-01 18:55:20 +1100
commit6f2c4abadd6097d949b388cc4d9c4ebd77f0df10 (patch)
tree591f61a1a94fb7070065351a4f90987ea2d3e45d /source4/lib/ldb/tools/ldbdel.c
parentf924a022cbc973ae646bff5119a1784e979a052f (diff)
downloadsamba-6f2c4abadd6097d949b388cc4d9c4ebd77f0df10.tar.gz
samba-6f2c4abadd6097d949b388cc4d9c4ebd77f0df10.tar.bz2
samba-6f2c4abadd6097d949b388cc4d9c4ebd77f0df10.zip
s4-ldb: convert existing ldb tools to use new command line hooks
the usage() function needs to take a ldb context, as the popt_options is specific to the ldb context Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/lib/ldb/tools/ldbdel.c')
-rw-r--r--source4/lib/ldb/tools/ldbdel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/tools/ldbdel.c b/source4/lib/ldb/tools/ldbdel.c
index 6994b3ddb6..6f7c8ae4a3 100644
--- a/source4/lib/ldb/tools/ldbdel.c
+++ b/source4/lib/ldb/tools/ldbdel.c
@@ -73,11 +73,11 @@ static int ldb_delete_recursive(struct ldb_context *ldb, struct ldb_dn *dn,struc
return 0;
}
-static void usage(void)
+static void usage(struct ldb_context *ldb)
{
printf("Usage: ldbdel <options> <DN...>\n");
printf("Deletes records from a ldb\n\n");
- ldb_cmdline_help("ldbdel", stdout);
+ ldb_cmdline_help(ldb, "ldbdel", stdout);
exit(1);
}
@@ -94,7 +94,7 @@ int main(int argc, const char **argv)
options = ldb_cmdline_process(ldb, argc, argv, usage);
if (options->argc < 1) {
- usage();
+ usage(ldb);
exit(1);
}