summaryrefslogtreecommitdiff
path: root/source3/lib/ldb/common
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/common
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/common')
-rw-r--r--source3/lib/ldb/common/attrib_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/ldb/common/attrib_handlers.c b/source3/lib/ldb/common/attrib_handlers.c
index a289f3c32a..2b699aeaa8 100644
--- a/source3/lib/ldb/common/attrib_handlers.c
+++ b/source3/lib/ldb/common/attrib_handlers.c
@@ -296,7 +296,7 @@ static int ldb_comparison_objectclass(struct ldb_context *ldb, void *mem_ctx,
}
for (i=0;subclasses[i];i++) {
struct ldb_val vs;
- vs.data = (uint8 *)discard_const(subclasses[i]);
+ vs.data = discard_const_p(uint8_t, subclasses[i]);
vs.length = strlen(subclasses[i]);
if (ldb_comparison_objectclass(ldb, mem_ctx, &vs, v2) == 0) {
return 0;