From: Joshua Rogers Date: Thu, 4 Sep 2025 20:25:19 +0000 (+0000) Subject: Maintenance: Fix out-of-sync If-None-Match copying explanation (#2200) X-Git-Tag: SQUID_7_2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87b7c59cf3e990488d3d8489b2614296150a25ca;p=thirdparty%2Fsquid.git Maintenance: Fix out-of-sync If-None-Match copying explanation (#2200) If `cache_miss_revalidate` is enabled, we append the header. --- diff --git a/src/http.cc b/src/http.cc index 28abf84811..13b3432bae 100644 --- a/src/http.cc +++ b/src/http.cc @@ -2244,7 +2244,7 @@ copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeaderEntry *e, co case Http::HdrType::IF_NONE_MATCH: /** \par If-None-Match: * append if the wildcard '*' special case value is present, or - * cache_miss_revalidate is disabled, or + * cache_miss_revalidate is enabled, or * the request is not cacheable in this proxy, or * the request contains authentication credentials. * \note this header lists a set of responses for the server to elide sending. Squid added values are extending that set.