diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-01-11 15:03:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:50:05 -0500 |
commit | 2e8937c334b20b07d28f1a6647f97c1df5da44e7 (patch) | |
tree | 3476d4b8cd0c18e20bc576626aa9c7b8eb1d852f /source4/lib/ldb | |
parent | 91a37f02dd11df226be5ff21881933126e1cb187 (diff) | |
download | samba-2e8937c334b20b07d28f1a6647f97c1df5da44e7.tar.gz samba-2e8937c334b20b07d28f1a6647f97c1df5da44e7.tar.bz2 samba-2e8937c334b20b07d28f1a6647f97c1df5da44e7.zip |
r12843: get special objects with ldbsearch -a too, to match ldbedit -a
metze
(This used to be commit bb68f2e602dbcc94c05b2dd764c163be1e5a583d)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/tools/cmdline.c | 2 | ||||
-rw-r--r-- | source4/lib/ldb/tools/ldbedit.c | 2 | ||||
-rw-r--r-- | source4/lib/ldb/tools/ldbsearch.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/tools/cmdline.c b/source4/lib/ldb/tools/cmdline.c index ee9e5f5e47..7f715a46b1 100644 --- a/source4/lib/ldb/tools/cmdline.c +++ b/source4/lib/ldb/tools/cmdline.c @@ -55,7 +55,7 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const { "recursive", 'r', POPT_ARG_NONE, &options.recursive, 0, "recursive delete", NULL }, { "num-searches", 0, POPT_ARG_INT, &options.num_searches, 0, "number of test searches", NULL }, { "num-records", 0, POPT_ARG_INT, &options.num_records, 0, "number of test records", NULL }, - { "all", 'a', POPT_ARG_NONE, &options.all_records, 0, "objectClass=*", NULL }, + { "all", 'a', POPT_ARG_NONE, &options.all_records, 0, "(|(objectClass=*)(distinguishedName=*))", NULL }, { "nosync", 0, POPT_ARG_NONE, &options.nosync, 0, "non-synchronous transactions", NULL }, { "sorted", 'S', POPT_ARG_NONE, &options.sorted, 0, "sort attributes", NULL }, { "sasl-mechanism", 0, POPT_ARG_STRING, &options.sasl_mechanism, 0, "choose SASL mechanism", "MECHANISM" }, diff --git a/source4/lib/ldb/tools/ldbedit.c b/source4/lib/ldb/tools/ldbedit.c index 24fcf1a969..9cef81f1db 100644 --- a/source4/lib/ldb/tools/ldbedit.c +++ b/source4/lib/ldb/tools/ldbedit.c @@ -278,7 +278,7 @@ static void usage(void) struct ldb_result *result = NULL; struct ldb_dn *basedn = NULL; int ret; - const char *expression = "(|(objectclass=*)(distinguishedName=*))"; + const char *expression = "(|(objectClass=*)(distinguishedName=*))"; const char * const * attrs = NULL; ldb = ldb_init(NULL); diff --git a/source4/lib/ldb/tools/ldbsearch.c b/source4/lib/ldb/tools/ldbsearch.c index 46a67ad324..3b4f84c929 100644 --- a/source4/lib/ldb/tools/ldbsearch.c +++ b/source4/lib/ldb/tools/ldbsearch.c @@ -324,7 +324,7 @@ static int do_search(struct ldb_context *ldb, const char * const * attrs = NULL; struct ldb_cmdline *options; int ret = -1; - const char *expression = "(objectclass=*)"; + const char *expression = "(|(objectClass=*)(distinguishedName=*))"; ldb = ldb_init(NULL); |