From: amosjeffries <> Date: Tue, 14 Aug 2007 17:06:18 +0000 (+0000) Subject: Typo leftover in large-obj from debug() > debugs() conversion X-Git-Tag: SQUID_3_0_PRE7~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ec12e4a54523623c7bf6f5c630398dd03c3fa84;p=thirdparty%2Fsquid.git Typo leftover in large-obj from debug() > debugs() conversion --- diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index 2d0005d42f..b00d075b6f 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.132 2007/08/14 10:05:27 serassio Exp $ + * $Id: client_side_reply.cc,v 1.133 2007/08/14 11:06:18 amosjeffries Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -1054,10 +1054,10 @@ clientHttpRequestStatus(int fd, ClientHttpRequest const *http) #endif #if SIZEOF_INT64_T == 4 if (http->out.offset > 0x7FFF0000) { - debugs(88, 1, ("WARNING: closing FD " << fd < " to prevent out.offset counter overflow"); - debugs(88, 1, ("\tclient " << (inet_ntoa(http->getConn() != NULL ? http->getConn()->peer.sin_addr : no_addr))); - debugs(88, 1, ("\treceived " << http->out.size << " bytes, offset " << http->out.offset); - debugs(88, 1, ("\tURI " << http->log_uri); + debugs(88, 1, "WARNING: closing FD " << fd < " to prevent out.offset counter overflow"); + debugs(88, 1, "\tclient " << (inet_ntoa(http->getConn() != NULL ? http->getConn()->peer.sin_addr : no_addr))); + debugs(88, 1, "\treceived " << http->out.size << " bytes, offset " << http->out.offset); + debugs(88, 1, "\tURI " << http->log_uri); return 1; }