]> err.no Git - varnish/commitdiff
don't make acl's const, they are not.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 26 Sep 2007 19:43:56 +0000 (19:43 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 26 Sep 2007 19:43:56 +0000 (19:43 +0000)
Reported by: Martin Aspeli <optilude@gmx.net>

git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2049 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/lib/libvcl/vcc_acl.c

index 06b7a396604c986c439e1468e0889e2444feb79c..0f14f7fa388d6b85da1821a4a4266e81af243139 100644 (file)
@@ -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;
 
 }