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_6_0_1~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae04a0776903f636118598e5c49a8533192620e5;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 bc719ab3d7..7004393ad7 100644 --- a/src/acl/HttpHeaderData.cc +++ b/src/acl/HttpHeaderData.cc @@ -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; }