From: Amos Jeffries Date: Sun, 14 Feb 2010 05:30:15 +0000 (+1300) Subject: HttpRequest uses GetHost in 3.1 X-Git-Tag: SQUID_3_1_0_17~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f3b5e053be8508f845360afb0e3c3ea7c1ceef2;p=thirdparty%2Fsquid.git HttpRequest uses GetHost in 3.1 --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 7cfb1f69f5..94b932440c 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -151,7 +151,7 @@ peerAllowedToUse(const peer * p, HttpRequest * request) #if PEER_MULTICAST_SIBLINGS if (p->type == PEER_MULTICAST && p->options.mcast_siblings && (request->flags.nocache || request->flags.refresh || request->flags.loopdetect || request->flags.need_validation)) - debugs(15, 2, "peerAllowedToUse(" << p->name << ", " << request->host << ") : multicast-siblings optimization match"); + debugs(15, 2, "peerAllowedToUse(" << p->name << ", " << request->GetHost() << ") : multicast-siblings optimization match"); #endif if (request->flags.nocache) return 0;