From 65923133ee790eb973289bf6bfb3b7d3f62f0039 Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 26 Sep 2007 19:43:56 +0000 Subject: [PATCH] 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 --- varnish-cache/lib/libvcl/vcc_acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5