From: hno <> Date: Fri, 29 Jun 2001 20:37:51 +0000 (+0000) Subject: Removed the need for the failing typecast.. X-Git-Tag: SQUID_3_0_PRE1~1478 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3c1067cd94b5b68df6eeab471ee2288df0fce2c;p=thirdparty%2Fsquid.git Removed the need for the failing typecast.. safe_free cannot be called on const pointers. --- diff --git a/src/structs.h b/src/structs.h index aaa905eefa..775436f0e0 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.390 2001/05/08 15:24:35 hno Exp $ + * $Id: structs.h,v 1.391 2001/06/29 14:37:51 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -1455,7 +1455,7 @@ struct _MemObject { #if URL_CHECKSUM_DEBUG unsigned int chksum; #endif - const char *vary_headers; + char *vary_headers; }; struct _StoreEntry {