]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Correct debug statement about non-IPs on parse
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 1 Apr 2011 01:17:16 +0000 (19:17 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 1 Apr 2011 01:17:16 +0000 (19:17 -0600)
src/ip/IpAddress.cc

index 5614dac2a0857c7ff3fa07ed4f6f8e043b76f64e..d17eb1e22c833d4604bb745cb26c66ac0575c421 100644 (file)
@@ -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);