]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Correct debug statement about non-IPs on parse
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 3 Mar 2011 12:56:51 +0000 (01:56 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 3 Mar 2011 12:56:51 +0000 (01:56 +1300)
src/ip/Address.cc

index 2ba98bf8ec969af4f41b47122210d530d85f6263..5030fb6c4bb3b497a43a3ef2b2e9cd0ce87c4c39 100644 (file)
@@ -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);