From: Source Maintenance Date: Fri, 2 Jun 2017 00:12:13 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: M-staged-PR71~146 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4a71b1fc8b75049b0c13965c1e358806cc568d58;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/http.cc b/src/http.cc index 3e685d0e52..a47e137a50 100644 --- a/src/http.cc +++ b/src/http.cc @@ -2463,8 +2463,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); }