From 380de14e625ec4119ac61b9aa77ddb6ef6b8e8e5 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 4 Mar 2011 01:56:51 +1300 Subject: [PATCH] Correct debug statement about non-IPs on parse --- src/ip/Address.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3