summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_parse.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_parse.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_parse.c')
-rw-r--r--source4/lib/ldb/common/ldb_parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/common/ldb_parse.c b/source4/lib/ldb/common/ldb_parse.c
index ad3cbd883d..933ff18f2b 100644
--- a/source4/lib/ldb/common/ldb_parse.c
+++ b/source4/lib/ldb/common/ldb_parse.c
@@ -459,8 +459,8 @@ static struct ldb_parse_tree *ldb_parse_not(void *mem_ctx, const char *s)
}
ret->operation = LDB_OP_NOT;
- ret->u.not.child = ldb_parse_filter(ret, &s);
- if (!ret->u.not.child) {
+ ret->u.isnot.child = ldb_parse_filter(ret, &s);
+ if (!ret->u.isnot.child) {
talloc_free(ret);
return NULL;
}
@@ -629,7 +629,7 @@ char *ldb_filter_from_tree(void *mem_ctx, struct ldb_parse_tree *tree)
}
return s;
case LDB_OP_NOT:
- s = ldb_filter_from_tree(mem_ctx, tree->u.not.child);
+ s = ldb_filter_from_tree(mem_ctx, tree->u.isnot.child);
if (s == NULL) return NULL;
ret = talloc_asprintf(mem_ctx, "(!%s)", s);