summaryrefslogtreecommitdiff
path: root/source4/lib/db_wrap.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2006-02-04 05:59:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:44 -0500
commit88279373abc07fa50a969135eb5ecf58d6c40cc7 (patch)
treeab1a73694d18f5d5d96892122cba5a4cfcc85b40 /source4/lib/db_wrap.c
parent48d8eee7522e1c1c45a9353ab77c96c20321f143 (diff)
downloadsamba-88279373abc07fa50a969135eb5ecf58d6c40cc7.tar.gz
samba-88279373abc07fa50a969135eb5ecf58d6c40cc7.tar.bz2
samba-88279373abc07fa50a969135eb5ecf58d6c40cc7.zip
r13328: After the attribute name check cleanup it turned up ldb_caseless_cmp()
was used just in one places and by mistake, as there we should have been using ldb_attr_cmp() Remove ldb_caseless_cmp() ... going on with the cleanup and utf8 compliance effort. Simo. (This used to be commit afda68d7bf655a9145648856d29e6e64b9f21aa3)
Diffstat (limited to 'source4/lib/db_wrap.c')
-rw-r--r--source4/lib/db_wrap.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/source4/lib/db_wrap.c b/source4/lib/db_wrap.c
index f3358bff98..4223d19b3f 100644
--- a/source4/lib/db_wrap.c
+++ b/source4/lib/db_wrap.c
@@ -55,12 +55,7 @@ static void ldb_wrap_debug(void *context, enum ldb_debug_level level,
free(s);
}
-static int wrap_caseless_cmp(void *context, const char *s1, const char *s2)
-{
- return strcasecmp_m(s1, s2);
-}
-
-static char *wrap_casefold(void *context, void *mem_ctx, const char *s)
+char *wrap_casefold(void *context, void *mem_ctx, const char *s)
{
return strupper_talloc(mem_ctx, s);
}
@@ -133,7 +128,7 @@ struct ldb_context *ldb_wrap_connect(TALLOC_CTX *mem_ctx,
ldb_set_debug(ldb, ldb_wrap_debug, NULL);
- ldb_set_utf8_fns(ldb, NULL, wrap_caseless_cmp, wrap_casefold);
+ ldb_set_utf8_fns(ldb, NULL, wrap_casefold);
return ldb;
}