]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW
authorwessels <>
Thu, 20 Jan 2000 04:57:30 +0000 (04:57 +0000)
committerwessels <>
Thu, 20 Jan 2000 04:57:30 +0000 (04:57 +0000)
 - http->log_type is getting clobbered here.  This screwed up stats
   for quite a long time probably.

src/client_side.cc

index e109dd54a0eb400edc85df69e90c8c896e1b9f81..57436b6acabe0f302d2e3ebefaaecd1d01bcce54 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.469 2000/01/14 08:37:05 wessels Exp $
+ * $Id: client_side.cc,v 1.470 2000/01/19 21:57:30 wessels Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -1963,8 +1963,7 @@ clientProcessRequest(clientHttpRequest * http)
            clientCacheHit,
            http);
     } else {
-       /* MISS CASE */
-       http->log_type = LOG_TCP_MISS;
+       /* MISS CASE, http->log_type is already set! */
        clientProcessMiss(http);
     }
 }