summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_match.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-07-13 05:55:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:23:00 -0500
commit52bef30fd48393fa7b24ade7622c758373bd6dbe (patch)
tree3afead232dae58712b6c921fee96e4b67aff59df /source4/lib/ldb/common/ldb_match.c
parent6fafd2f05579392a78a58c27d780786456bd2340 (diff)
downloadsamba-52bef30fd48393fa7b24ade7622c758373bd6dbe.tar.gz
samba-52bef30fd48393fa7b24ade7622c758373bd6dbe.tar.bz2
samba-52bef30fd48393fa7b24ade7622c758373bd6dbe.zip
r8414: Some C++ friendlyness fixes - 'not' is apparently a keyword in C++.
(This used to be commit bcfb3a45e4a5962fe763f8071d4458f4bd11605b)
Diffstat (limited to 'source4/lib/ldb/common/ldb_match.c')
-rw-r--r--source4/lib/ldb/common/ldb_match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_match.c b/source4/lib/ldb/common/ldb_match.c
index b32a933df3..f437f31eac 100644
--- a/source4/lib/ldb/common/ldb_match.c
+++ b/source4/lib/ldb/common/ldb_match.c
@@ -369,7 +369,7 @@ static int ldb_match_message(struct ldb_context *ldb,
return ldb_match_extended(ldb, msg, tree, base, scope);
case LDB_OP_NOT:
- return ! ldb_match_message(ldb, msg, tree->u.not.child, base, scope);
+ return ! ldb_match_message(ldb, msg, tree->u.isnot.child, base, scope);
case LDB_OP_AND:
for (i=0;i<tree->u.list.num_elements;i++) {