From: robertc <> Date: Tue, 29 Jul 2003 17:34:56 +0000 (+0000) Subject: fixes from/suggested by Pawel Worach X-Git-Tag: SQUID_3_0_PRE3~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d09176e14d46bd1e0588762f35f1ac236ba52cf1;p=thirdparty%2Fsquid.git fixes from/suggested by Pawel Worach --- diff --git a/src/authenticate.cc b/src/authenticate.cc index 46f034bd6c..010119703b 100644 --- a/src/authenticate.cc +++ b/src/authenticate.cc @@ -1,6 +1,6 @@ /* - * $Id: authenticate.cc,v 1.60 2003/07/14 14:15:59 robertc Exp $ + * $Id: authenticate.cc,v 1.61 2003/07/29 11:34:56 robertc Exp $ * * DEBUG: section 29 Authenticator * AUTHOR: Robert Collins @@ -409,7 +409,7 @@ authenticateAuthUserRequestSetIp(auth_user_request_t * auth_user_request, struct ip1 = xstrdup(inet_ntoa(ipaddr)); - debug(29, 2) ("authenticateAuthUserRequestSetIp: user '%s' has been seen at a new IP address (%s)\n ", auth_user->username(), ip1); + debug(29, 2) ("authenticateAuthUserRequestSetIp: user '%s' has been seen at a new IP address (%s)\n", auth_user->username(), ip1); safe_free(ip1); } diff --git a/src/fs/diskd/store_io_diskd.cc b/src/fs/diskd/store_io_diskd.cc index 8808c19356..dc1327eae5 100644 --- a/src/fs/diskd/store_io_diskd.cc +++ b/src/fs/diskd/store_io_diskd.cc @@ -1,6 +1,6 @@ /* - * $Id: store_io_diskd.cc,v 1.34 2003/07/22 15:23:11 robertc Exp $ + * $Id: store_io_diskd.cc,v 1.35 2003/07/29 11:34:57 robertc Exp $ * * DEBUG: section 79 Squid-side DISKD I/O functions. * AUTHOR: Duane Wessels @@ -67,7 +67,7 @@ DiskdIO::shedLoad() */ if (away > magic1) { - debug(79, 3) ("storeDiskdIO::sheLoad: Shedding, too many requests away\n"); + debug(79, 3) ("storeDiskdIO::shedLoad: Shedding, too many requests away\n"); return true; } diff --git a/src/http.cc b/src/http.cc index 23620f707a..f67ba92f81 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.423 2003/07/23 11:39:44 robertc Exp $ + * $Id: http.cc,v 1.424 2003/07/29 11:34:56 robertc Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -840,7 +840,7 @@ HttpStateData::readReply (int fd, char *readBuf, size_t len, comm_err_t flag, in */ if (flag == COMM_ERR_CLOSING) { - debug (11,1)("http socket closing\n"); + debug (11,3)("http socket closing\n"); return; }