From: hno <> Date: Mon, 23 Jun 2003 14:38:39 +0000 (+0000) Subject: From Reuben Farrelly: X-Git-Tag: SQUID_3_0_PRE1~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2315dd4042d1c3bc18eebdfb38775c4b6d97d58f;p=thirdparty%2Fsquid.git From Reuben Farrelly: A while ago we introduced the information line in squid that stated the type of connections being accepted, like this: 2003/06/23 19:14:49| Accepting transparently proxiedHTTP connections at 192.168.0.2, port 3128, FD 12. Here's a patch (attached) to squid-3 CVS as of now, which fixes up a minor problem with whitespaces - as illustrated above. Reuben --- diff --git a/src/client_side.cc b/src/client_side.cc index d6dfdeedb2..8a5748f82d 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.641 2003/06/20 01:01:00 robertc Exp $ + * $Id: client_side.cc,v 1.642 2003/06/23 08:38:39 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -2858,9 +2858,9 @@ clientHttpConnectionsOpen(void) comm_accept(fd, httpAccept, s); - debug(1, 1) ("Accepting %sHTTP connections at %s, port %d, FD %d.\n", - s->transparent ? " transparently proxied" : - s->accel ? " accelerated" : + debug(1, 1) ("Accepting %s HTTP connections at %s, port %d, FD %d.\n", + s->transparent ? "transparently proxied" : + s->accel ? "accelerated" : "", inet_ntoa(s->s.sin_addr), (int) ntohs(s->s.sin_port), fd);