summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/ldb_tdb/ldb_index.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2006-02-04 06:57:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:45 -0500
commit04396c36d3ee8300b2b73ea8b43a45ea1b250828 (patch)
tree9f48c588c7faf2ace8b1ea0281cd3fd01d10af5f /source4/lib/ldb/ldb_tdb/ldb_index.c
parent88279373abc07fa50a969135eb5ecf58d6c40cc7 (diff)
downloadsamba-04396c36d3ee8300b2b73ea8b43a45ea1b250828.tar.gz
samba-04396c36d3ee8300b2b73ea8b43a45ea1b250828.tar.bz2
samba-04396c36d3ee8300b2b73ea8b43a45ea1b250828.zip
r13333: revert previous commit I will use ldb_caseless_cmp in attrib_handlers
to correctly support utf8 comparisons add an ldb_attr_Casefold function for attribute names and use it instead of casefold in the right places (This used to be commit 3b4eb2413bbce059dde69f35c03cdc3cc2ba85c5)
Diffstat (limited to 'source4/lib/ldb/ldb_tdb/ldb_index.c')
-rw-r--r--source4/lib/ldb/ldb_tdb/ldb_index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_tdb/ldb_index.c b/source4/lib/ldb/ldb_tdb/ldb_index.c
index fb29a9ddbf..ac3063ef28 100644
--- a/source4/lib/ldb/ldb_tdb/ldb_index.c
+++ b/source4/lib/ldb/ldb_tdb/ldb_index.c
@@ -106,7 +106,7 @@ static struct ldb_dn *ldb_dn_key(struct ldb_context *ldb,
const struct ldb_attrib_handler *h;
char *attr_folded;
- attr_folded = ldb_casefold(ldb, ldb, attr);
+ attr_folded = ldb_attr_casefold(ldb, ldb, attr);
if (!attr_folded) {
return NULL;
}