From 2468e16c75c2aa6ca41641eeba7de7b5959c8b13 Mon Sep 17 00:00:00 2001 From: Source Maintenance Date: Thu, 15 Jun 2017 00:16:33 +0000 Subject: [PATCH] SourceFormat Enforcement --- src/http.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.47.2