From: Source Maintenance Date: Thu, 15 Jun 2017 00:16:33 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_5_28~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2468e16c75c2aa6ca41641eeba7de7b5959c8b13;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/http.cc b/src/http.cc index e7e67b1eba..61fefa60be 100644 --- a/src/http.cc +++ b/src/http.cc @@ -523,7 +523,7 @@ HttpStateData::reusableReply(HttpStateData::ReuseDecision &decision) case Http::scMisdirectedRequest: statusAnswer = ReuseDecision::doNotCacheButShare; statusReason = shareableError; - // fall through to the actual decision making below + // fall through to the actual decision making below case Http::scBadRequest: // no sharing; perhaps the server did not like something specific to this request @@ -2438,8 +2438,8 @@ std::ostream &operator <<(std::ostream &os, const HttpStateData::ReuseDecision & }; assert(d.answer >= HttpStateData::ReuseDecision::reuseNot && - d.answer <= HttpStateData::ReuseDecision::doNotCacheButShare); + d.answer <= HttpStateData::ReuseDecision::doNotCacheButShare); return os << ReuseMessages[d.answer] << " because " << d.reason << - "; HTTP status " << d.statusCode << " " << *(d.entry); + "; HTTP status " << d.statusCode << " " << *(d.entry); }