]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
From Reuben Farrelly:
authorhno <>
Mon, 23 Jun 2003 14:38:39 +0000 (14:38 +0000)
committerhno <>
Mon, 23 Jun 2003 14:38:39 +0000 (14:38 +0000)
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

src/client_side.cc

index d6dfdeedb2f0cfd293329742acd9b05e1bb6b820..8a5748f82d06facd0f45bffb14ad106d3053cfff 100644 (file)
@@ -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);