From: wessels <> Date: Fri, 20 Mar 1998 12:07:39 +0000 (+0000) Subject: remove double clientProcessRequest2 call X-Git-Tag: SQUID_3_0_PRE1~3789 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6addbd81f59f9cb66b35e0fd0883a63c73016bb0;p=thirdparty%2Fsquid.git remove double clientProcessRequest2 call --- diff --git a/src/client_side.cc b/src/client_side.cc index 0f521d2730..e0b5583d09 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.230 1998/03/17 04:00:12 wessels Exp $ + * $Id: client_side.cc,v 1.231 1998/03/20 05:07:39 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -1281,6 +1281,7 @@ clientProcessRequest(clientHttpRequest * http) return; } /* yes, continue */ + http->log_type = LOG_TCP_MISS; } else if (pumpMethod(r->method)) { http->log_type = LOG_TCP_MISS; /* XXX oof, POST can be cached! */ @@ -1288,7 +1289,6 @@ clientProcessRequest(clientHttpRequest * http) } else { http->log_type = clientProcessRequest2(http); } - http->log_type = clientProcessRequest2(http); debug(33, 4) ("clientProcessRequest: %s for '%s'\n", log_tags[http->log_type], http->uri);