From: phk Date: Wed, 26 Sep 2007 19:43:56 +0000 (+0000) Subject: don't make acl's const, they are not. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65923133ee790eb973289bf6bfb3b7d3f62f0039;p=varnish don't make acl's const, they are not. Reported by: Martin Aspeli git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2049 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/lib/libvcl/vcc_acl.c b/varnish-cache/lib/libvcl/vcc_acl.c index 06b7a396..0f14f7fa 100644 --- a/varnish-cache/lib/libvcl/vcc_acl.c +++ b/varnish-cache/lib/libvcl/vcc_acl.c @@ -42,7 +42,7 @@ static void vcc_acl_top(struct tokenlist *tl, const char *acln) { - Fh(tl, 1, "\nstatic const struct vrt_acl acl_%s[] = {\n", acln); + Fh(tl, 1, "\nstatic struct vrt_acl acl_%s[] = {\n", acln); tl->hindent += INDENT; }