From: Amos Jeffries Date: Thu, 3 Mar 2011 12:56:51 +0000 (+1300) Subject: Correct debug statement about non-IPs on parse X-Git-Tag: take06~27^2~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=380de14e625ec4119ac61b9aa77ddb6ef6b8e8e5;p=thirdparty%2Fsquid.git Correct debug statement about non-IPs on parse --- diff --git a/src/ip/Address.cc b/src/ip/Address.cc index 2ba98bf8ec..5030fb6c4b 100644 --- a/src/ip/Address.cc +++ b/src/ip/Address.cc @@ -398,7 +398,7 @@ Ip::Address::LookupHostIP(const char *s, bool nodns) #endif if ( (err = getaddrinfo(s, NULL, &want, &res)) != 0) { - debugs(14,3, HERE << "Given Bad IP '" << s << "': " << gai_strerror(err) ); + debugs(14,3, HERE << "Given Non-IP '" << s << "': " << gai_strerror(err) ); /* free the memory getaddrinfo() dynamically allocated. */ if (res) { freeaddrinfo(res);