From: Alex Rousskov Date: Sat, 10 Dec 2022 14:18:18 +0000 (+0000) Subject: Fix ACL type typo in req_header, rep_header key-changing ERRORs (#1208) X-Git-Tag: SQUID_5_8~7 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=9d1a5d20d027d6f262792b528a75d7c29eab643e;p=thirdparty%2Fsquid.git Fix ACL type typo in req_header, rep_header key-changing ERRORs (#1208) --- diff --git a/src/acl/HttpHeaderData.cc b/src/acl/HttpHeaderData.cc index 6d2cef8463..a7ee473e87 100644 --- a/src/acl/HttpHeaderData.cc +++ b/src/acl/HttpHeaderData.cc @@ -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; }