]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix ACL type typo in req_header, rep_header key-changing ERRORs (#1208)
authorAlex Rousskov <rousskov@measurement-factory.com>
Sat, 10 Dec 2022 14:18:18 +0000 (14:18 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Mon, 12 Dec 2022 06:03:57 +0000 (06:03 +0000)
src/acl/HttpHeaderData.cc

index bc719ab3d7cc18956cc41b35e2affb117da5c16a..7004393ad7b77599daa3aba505269e9118f166d4 100644 (file)
@@ -87,7 +87,7 @@ ACLHTTPHeaderData::parse()
         hdrId = Http::HeaderLookupTable.lookup(hdrName).id;
     } else if (hdrName.caseCmp(t) != 0) {
         debugs(28, DBG_CRITICAL, "ERROR: " << cfg_filename << " line " << config_lineno << ": " << config_input_line);
-        debugs(28, DBG_CRITICAL, "ERROR: ACL cannot match both " << hdrName << " and " << t << " headers. Use 'anyof' ACL instead.");
+        debugs(28, DBG_CRITICAL, "ERROR: ACL cannot match both " << hdrName << " and " << t << " headers. Use 'any-of' ACL instead.");
         return;
     }