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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7b3ab193acb40cf86446c53a42919b33de447d9;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 f7e7f2735b..a43b2b504f 100644 --- a/src/http.cc +++ b/src/http.cc @@ -2250,7 +2250,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.