]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 24 Oct 2010 15:50:24 +0000 (09:50 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 24 Oct 2010 15:50:24 +0000 (09:50 -0600)
src/adaptation/icap/Options.cc
src/http.cc

index b08a857d4d4445bcf4237ecbfb834b9d0b48b656..df566ff3a4abf941a7f8adaa226f43f740d5e006 100644 (file)
@@ -92,7 +92,7 @@ void Adaptation::Icap::Options::configure(const HttpReply *reply)
     if (h->getByName("Opt-body-type").size()) {
         // TODO: add a class to rate-limit such warnings using FadingCounter
         debugs(93,DBG_IMPORTANT, "WARNING: Ignoring unsupported ICAP " <<
-            "OPTIONS body; type: " << h->getByName("Opt-body-type"));
+               "OPTIONS body; type: " << h->getByName("Opt-body-type"));
         // Do not set error, assuming the response headers are valid.
     }
 
index 6ae54d2d6a792d15f9217f6fa1a20844935bf1cb..c8bb9ece2e1b7a401a49b128ae9f8858eafb71cc 100644 (file)
@@ -374,8 +374,8 @@ HttpStateData::cacheableReply()
 
     // RFC 2616: do not cache replies to responses with no-store CC directive
     if (request && request->cache_control &&
-        EBIT_TEST(request->cache_control->mask, CC_NO_STORE) &&
-        !REFRESH_OVERRIDE(ignore_no_store))
+            EBIT_TEST(request->cache_control->mask, CC_NO_STORE) &&
+            !REFRESH_OVERRIDE(ignore_no_store))
         return 0;
 
     if (!ignoreCacheControl) {