Files
ports/www/squid3/files/patch-ServiceRep.cc
T
Thomas Zander f52c120051 Fix build with ECAP OPTION
PR:		231631
Submitted by:	w.schwarzenfeld@utanet.at (patch file)
Reported by:	riggs
Approved by:	timp87@gmail.com (maintainer)
2018-09-29 14:39:16 +00:00

12 lines
351 B
C++

--- src/adaptation/ecap/ServiceRep.cc.orig 2018-09-24 18:34:06 UTC
+++ src/adaptation/ecap/ServiceRep.cc
@@ -234,7 +234,7 @@ bool Adaptation::Ecap::ServiceRep::probe
bool Adaptation::Ecap::ServiceRep::up() const
{
- return theService;
+ return bool(theService);
}
bool Adaptation::Ecap::ServiceRep::wantsUrl(const String &urlPath) const