r2049 - trunk/varnish-cache/lib/libvcl

phk at projects.linpro.no phk at projects.linpro.no
Wed Sep 26 21:43:56 CEST 2007


Author: phk
Date: 2007-09-26 21:43:56 +0200 (Wed, 26 Sep 2007)
New Revision: 2049

Modified:
   trunk/varnish-cache/lib/libvcl/vcc_acl.c
Log:
don't make acl's const, they are not.

Reported by:	Martin Aspeli <optilude at gmx.net>



Modified: trunk/varnish-cache/lib/libvcl/vcc_acl.c
===================================================================
--- trunk/varnish-cache/lib/libvcl/vcc_acl.c	2007-09-26 19:38:04 UTC (rev 2048)
+++ trunk/varnish-cache/lib/libvcl/vcc_acl.c	2007-09-26 19:43:56 UTC (rev 2049)
@@ -42,7 +42,7 @@
 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;
 
 }




More information about the varnish-commit mailing list