From 52bef30fd48393fa7b24ade7622c758373bd6dbe Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 13 Jul 2005 05:55:28 +0000 Subject: r8414: Some C++ friendlyness fixes - 'not' is apparently a keyword in C++. (This used to be commit bcfb3a45e4a5962fe763f8071d4458f4bd11605b) --- source4/lib/ldb/common/ldb_match.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/common/ldb_match.c') 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;iu.list.num_elements;i++) { -- cgit