summaryrefslogtreecommitdiff
path: root/source3/lib/ldb/modules
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-11-28 17:47:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:11 -0500
commit762b86ff0deb072871081f2684f63778e36ad3ce (patch)
tree329f0361e1284d16b4312a1de01cb487d1c46f79 /source3/lib/ldb/modules
parent15974508e8916e325563202f5fa7fad4f8514340 (diff)
downloadsamba-762b86ff0deb072871081f2684f63778e36ad3ce.tar.gz
samba-762b86ff0deb072871081f2684f63778e36ad3ce.tar.bz2
samba-762b86ff0deb072871081f2684f63778e36ad3ce.zip
r19935: always use discard_const_p() in lib/ldb/
metze (This used to be commit 4a5da57306ad8cce5522ee72349cb85b447e295c)
Diffstat (limited to 'source3/lib/ldb/modules')
-rw-r--r--source3/lib/ldb/modules/operational.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/ldb/modules/operational.c b/source3/lib/ldb/modules/operational.c
index 555ae5e9f6..953cbd593e 100644
--- a/source3/lib/ldb/modules/operational.c
+++ b/source3/lib/ldb/modules/operational.c
@@ -244,7 +244,7 @@ static int operational_search(struct ldb_module *module, struct ldb_request *req
searchable, but are stored using a different name in the
backend */
for (i=0;i<ARRAY_SIZE(parse_tree_sub);i++) {
- ldb_parse_tree_attr_replace(CONST_DISCARD(struct ldb_parse_tree *,req->op.search.tree),
+ ldb_parse_tree_attr_replace(discard_const_p(struct ldb_parse_tree, req->op.search.tree),
parse_tree_sub[i].attr,
parse_tree_sub[i].replace);
}