diff options
author | Simo Sorce <idra@samba.org> | 2006-02-04 18:30:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:47 -0500 |
commit | 76036d37b42d0c77e57b288af410b931c51fea81 (patch) | |
tree | f9d91c33b4abba69d3862c7b0f1d3d8762b17eee /source4/lib/ldb/tools | |
parent | 18a0ece2cc3ffb8590a499446970f75d954f18cf (diff) | |
download | samba-76036d37b42d0c77e57b288af410b931c51fea81.tar.gz samba-76036d37b42d0c77e57b288af410b931c51fea81.tar.bz2 samba-76036d37b42d0c77e57b288af410b931c51fea81.zip |
r13349: In the end I could not use ldb_caseless_cmp
in attrib_handler.c functions
remove it again
Simo
(This used to be commit 513ff499071e6cb5e608a82430718021f72997bd)
Diffstat (limited to 'source4/lib/ldb/tools')
-rw-r--r-- | source4/lib/ldb/tools/cmdline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/tools/cmdline.c b/source4/lib/ldb/tools/cmdline.c index 1926df4c86..8937f9d4f6 100644 --- a/source4/lib/ldb/tools/cmdline.c +++ b/source4/lib/ldb/tools/cmdline.c @@ -205,7 +205,7 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const if (ldb_set_opaque(ldb, "credentials", cmdline_credentials)) { goto failed; } - ldb_set_utf8_fns(ldb, NULL, wrap_caseless_cmp, wrap_casefold); + ldb_set_utf8_fns(ldb, NULL, wrap_casefold); #endif if (ldb_connect(ldb, ret->url, flags, ret->options) != 0) { fprintf(stderr, "Failed to connect to %s - %s\n", |