]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed the need for the failing typecast..
authorhno <>
Fri, 29 Jun 2001 20:37:51 +0000 (20:37 +0000)
committerhno <>
Fri, 29 Jun 2001 20:37:51 +0000 (20:37 +0000)
safe_free cannot be called on const pointers.

src/structs.h

index aaa905eefa73425d5303926dfb7593f1ad19dcbe..775436f0e0c0fbdbfa3b8ec5b352d63cb5c5d846 100644 (file)
@@ -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 {