From d267fa9cf63dc6d5028f85dac5dcad2fed885e64 Mon Sep 17 00:00:00 2001 From: Source Maintenance Date: Tue, 6 Sep 2016 12:12:18 +0000 Subject: [PATCH] SourceFormat Enforcement --- src/refresh.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/refresh.cc b/src/refresh.cc index a8364b350a..db76489604 100644 --- a/src/refresh.cc +++ b/src/refresh.cc @@ -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; -- 2.47.2