From: Automatic source maintenance Date: Sun, 24 Oct 2010 15:50:24 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_1_9~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f82ba081b93bacb7d31942ea447cf13f2f2ed2f;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/adaptation/icap/Options.cc b/src/adaptation/icap/Options.cc index b08a857d4d..df566ff3a4 100644 --- a/src/adaptation/icap/Options.cc +++ b/src/adaptation/icap/Options.cc @@ -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. } diff --git a/src/http.cc b/src/http.cc index 6ae54d2d6a..c8bb9ece2e 100644 --- a/src/http.cc +++ b/src/http.cc @@ -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) {