summaryrefslogtreecommitdiff
path: root/source3/lib/ldb/common/ldb_match.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-10-07 10:24:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:19 -0500
commit628fc4b53a33b604e1c28d38ff5fd91459434814 (patch)
treedf0277e39f182ad771fe0a5e48314f3896d162a1 /source3/lib/ldb/common/ldb_match.c
parent7b84b133fe375e69817fe5c76089f67280507809 (diff)
downloadsamba-628fc4b53a33b604e1c28d38ff5fd91459434814.tar.gz
samba-628fc4b53a33b604e1c28d38ff5fd91459434814.tar.bz2
samba-628fc4b53a33b604e1c28d38ff5fd91459434814.zip
r19163: pass always a mem_ctx to functions and a ldb_context where needed
It would be nice if someone can merge that to samba4, otherwise I'll merge that to samba4 on monday metze (This used to be commit 6bc42f31ce294f2bd50ffbd536e1ee42607ef799)
Diffstat (limited to 'source3/lib/ldb/common/ldb_match.c')
-rw-r--r--source3/lib/ldb/common/ldb_match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/ldb/common/ldb_match.c b/source3/lib/ldb/common/ldb_match.c
index 64e52d285d..1fd12da7f3 100644
--- a/source3/lib/ldb/common/ldb_match.c
+++ b/source3/lib/ldb/common/ldb_match.c
@@ -149,7 +149,7 @@ static int ldb_match_equality(struct ldb_context *ldb,
int ret;
if (ldb_attr_dn(tree->u.equality.attr) == 0) {
- valuedn = ldb_dn_explode_casefold(ldb,
+ valuedn = ldb_dn_explode_casefold(ldb, ldb,
(char *)tree->u.equality.value.data);
if (valuedn == NULL) {
return 0;