From 4f619f48740e075dc00a61d97f8a0f550cb2f5b8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 6 Jun 2006 22:10:52 +0000 Subject: r16067: Remove const, it isn't required and just causes a warning. Andrew Bartlett (This used to be commit 272a0957283daafb6cbf52219263b94856155d65) --- source4/lib/ldb/samba/ldif_handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib') 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) { -- cgit