]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Tue, 6 Sep 2016 12:12:18 +0000 (12:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Tue, 6 Sep 2016 12:12:18 +0000 (12:12 +0000)
src/refresh.cc

index a8364b350ab120b995735046d20a01c8c9824e80..db76489604891c72551c951efd5eb5d0ec6347d3 100644 (file)
@@ -348,10 +348,10 @@ refreshCheck(const StoreEntry * entry, HttpRequest * request, time_t delta)
      */
     const bool revalidateAlways = EBIT_TEST(entry->flags, ENTRY_REVALIDATE_ALWAYS);
     if (revalidateAlways || (staleness > -1 &&
-                EBIT_TEST(entry->flags, ENTRY_REVALIDATE_STALE))) {
+                             EBIT_TEST(entry->flags, ENTRY_REVALIDATE_STALE))) {
         debugs(22, 3, "YES: Must revalidate stale object (origin set " <<
-                (revalidateAlways ? "no-cache or private" :
-                 "must-revalidate, proxy-revalidate or s-maxage") << ")");
+               (revalidateAlways ? "no-cache or private" :
+                "must-revalidate, proxy-revalidate or s-maxage") << ")");
         if (request)
             request->flags.failOnValidationError = true;
         return STALE_MUST_REVALIDATE;