summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-10-06 15:17:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:16 -0500
commita6e45f0da5b7a187f652fb80d172007d36a5e855 (patch)
tree5391c2f8d142124e5cc2b919e5f30b699edd21ba
parent3652a2360fcbd254f6b15c54176505c0c59a97e7 (diff)
downloadsamba-a6e45f0da5b7a187f652fb80d172007d36a5e855.tar.gz
samba-a6e45f0da5b7a187f652fb80d172007d36a5e855.tar.bz2
samba-a6e45f0da5b7a187f652fb80d172007d36a5e855.zip
r19137: that looks nicer:-)
metze (This used to be commit db40552d9471f4a8ce2c5c724319a4eb242ed24a)
-rw-r--r--source3/lib/ldb/common/ldb_msg.c2
-rw-r--r--source3/lib/ldb/common/ldb_parse.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/ldb/common/ldb_msg.c b/source3/lib/ldb/common/ldb_msg.c
index f6fbb04afb..809d965745 100644
--- a/source3/lib/ldb/common/ldb_msg.c
+++ b/source3/lib/ldb/common/ldb_msg.c
@@ -797,7 +797,7 @@ int ldb_msg_check_string_attribute(const struct ldb_message *msg, const char *na
if (el == NULL)
return 0;
- val.data = (uint8_t *)discard_const(value);
+ val.data = discard_const_p(uint8_t, value);
val.length = strlen(value);
if (ldb_msg_find_val(el, &val))
diff --git a/source3/lib/ldb/common/ldb_parse.c b/source3/lib/ldb/common/ldb_parse.c
index ec6ba420b4..26f88769e6 100644
--- a/source3/lib/ldb/common/ldb_parse.c
+++ b/source3/lib/ldb/common/ldb_parse.c
@@ -134,7 +134,7 @@ char *ldb_binary_encode(void *mem_ctx, struct ldb_val val)
char *ldb_binary_encode_string(void *mem_ctx, const char *string)
{
struct ldb_val val;
- val.data = (uint8_t *)discard_const(string);
+ val.data = discard_const_p(uint8_t, string);
val.length = strlen(string);
return ldb_binary_encode(mem_ctx, val);
}