1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-20 22:50:26 +03:00

r16067: Remove const, it isn't required and just causes a warning.

Andrew Bartlett
(This used to be commit 272a0957283daafb6cbf52219263b94856155d65)
This commit is contained in:
Andrew Bartlett 2006-06-06 22:10:52 +00:00 committed by Gerald (Jerry) Carter
parent efddd37af8
commit 4f619f4874

View File

@ -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) {