summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/util.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-04 10:14:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:06:20 -0500
commit9012a501533126c4c0ac25a16fd6439a45df3d9a (patch)
tree24e31070e5b34000a70d78ecbc019c0ff141bde2 /source4/lib/ldb/common/util.c
parent2f9e170f45e128eb6ab6bd97c9c8b40dcd9a97fa (diff)
downloadsamba-9012a501533126c4c0ac25a16fd6439a45df3d9a.tar.gz
samba-9012a501533126c4c0ac25a16fd6439a45df3d9a.tar.bz2
samba-9012a501533126c4c0ac25a16fd6439a45df3d9a.zip
r4059: moved the ldb -o option parsing to a common routine
(This used to be commit ee52c1e38c9bac852458196ffbd677cca62a3965)
Diffstat (limited to 'source4/lib/ldb/common/util.c')
-rw-r--r--source4/lib/ldb/common/util.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/util.c b/source4/lib/ldb/common/util.c
index af738f352a..0c9cf297c1 100644
--- a/source4/lib/ldb/common/util.c
+++ b/source4/lib/ldb/common/util.c
@@ -86,3 +86,23 @@ int ldb_list_find(const void *needle,
return -1;
}
+
+
+/*
+ common code for parsing -o options in ldb tools
+*/
+const char **ldb_options_parse(const char **options, int *ldbopts, const char *arg)
+{
+ if (*ldbopts == 0) {
+ options = malloc(sizeof(char *) * 2);
+ } else {
+ options = realloc(options, sizeof(char *)*((*ldbopts)+2));
+ }
+ if (options == NULL) {
+ fprintf(stderr, "Out of memory in options parsing!\n");
+ exit(-1);
+ }
+ options[(*ldbopts)++] = arg;
+ options[*ldbopts] = NULL;
+ return options;
+}