]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Thu, 15 Jun 2017 00:16:33 +0000 (00:16 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Thu, 15 Jun 2017 00:16:33 +0000 (00:16 +0000)
src/http.cc

index e7e67b1ebaa907b6cc29838e82a32e5acc7cdb26..61fefa60bed856a937002a541fd218ba7e12c307 100644 (file)
@@ -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);
 }