]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: request_flags incorrectly initialised nocache_hack.
authorrobertc <>
Sun, 21 Sep 2003 10:31:25 +0000 (10:31 +0000)
committerrobertc <>
Sun, 21 Sep 2003 10:31:25 +0000 (10:31 +0000)
Keywords:

request_flags incorrectly initialised nocache_hack.

src/structs.h

index 352ca7221624d8d1cb18806b523e3bbfe21772c0..2585aed8a319dbe0154911b921dc5c2c1fdaca58 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: structs.h,v 1.481 2003/09/01 03:49:40 robertc Exp $
+ * $Id: structs.h,v 1.482 2003/09/21 04:31:25 robertc Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
@@ -1463,7 +1463,7 @@ struct request_flags
     request_flags():range(0),nocache(0),ims(0),auth(0),cachable(0),hierarchical(0),loopdetect(0),proxy_keepalive(0),proxying(0),refresh(0),redirected(0),need_validation(0),accelerated(0),transparent(0),internal(0),internalclient(0),body_sent(0),destinationIPLookedUp_(0)
     {
 #if HTTP_VIOLATIONS
-        nocache_hack = 1;
+        nocache_hack = 0;
 #endif
 
     }