summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-06-06 22:10:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:08:56 -0500
commit4f619f48740e075dc00a61d97f8a0f550cb2f5b8 (patch)
tree87bc9b9519a967708e665eb4ed1596e428357784 /source4/lib
parentefddd37af84b9db429237a491cb74a2c12c505cb (diff)
downloadsamba-4f619f48740e075dc00a61d97f8a0f550cb2f5b8.tar.gz
samba-4f619f48740e075dc00a61d97f8a0f550cb2f5b8.tar.bz2
samba-4f619f48740e075dc00a61d97f8a0f550cb2f5b8.zip
r16067: Remove const, it isn't required and just causes a warning.
Andrew Bartlett (This used to be commit 272a0957283daafb6cbf52219263b94856155d65)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ldb/samba/ldif_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/samba/ldif_handlers.c b/source4/lib/ldb/samba/ldif_handlers.c
index 28bc5ea997..b7015b833a 100644
--- a/source4/lib/ldb/samba/ldif_handlers.c
+++ b/source4/lib/ldb/samba/ldif_handlers.c
@@ -284,7 +284,7 @@ static int ldif_canonicalise_objectCategory(struct ldb_context *ldb, void *mem_c
const struct ldb_val *in, struct ldb_val *out)
{
struct ldb_dn *dn1 = NULL;
- const char *oc1;
+ char *oc1;
dn1 = ldb_dn_explode(mem_ctx, (char *)in->data);
if (dn1 == NULL) {