From: Amos Jeffries Date: Fri, 1 Apr 2011 01:17:16 +0000 (-0600) Subject: Correct debug statement about non-IPs on parse X-Git-Tag: SQUID_3_1_12~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=922c505cdcdf0a283966458a530b8e059b6dbdb0;p=thirdparty%2Fsquid.git Correct debug statement about non-IPs on parse --- diff --git a/src/ip/IpAddress.cc b/src/ip/IpAddress.cc index 5614dac2a0..d17eb1e22c 100644 --- a/src/ip/IpAddress.cc +++ b/src/ip/IpAddress.cc @@ -375,7 +375,7 @@ bool IpAddress::LookupHostIP(const char *s, bool nodns) #endif if ( (err = xgetaddrinfo(s, NULL, &want, &res)) != 0) { - debugs(14,3, HERE << "Given Bad IP '" << s << "': " << xgai_strerror(err) ); + debugs(14,3, HERE << "Given Non-IP '" << s << "': " << xgai_strerror(err) ); /* free the memory xgetaddrinfo() dynamically allocated. */ if (res) { xfreeaddrinfo(res);