]> 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)
committerAmos Jeffries <yadij@users.noreply.github.com>
Tue, 17 Jan 2023 15:27:30 +0000 (04:27 +1300)
src/acl/HttpHeaderData.cc

index 6d2cef8463c313c2576a5d3a289ac67d64022778..a7ee473e87078060f2e324f75c867d04f96efb0f 100644 (file)
@@ -80,7 +80,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;
     }