From: Amos Jeffries Date: Wed, 13 Jan 2010 04:42:35 +0000 (+1300) Subject: Author: Matthew Morgan X-Git-Tag: SQUID_3_1_0_16~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6700ae61840ddb5178e1bc71397ff65cf5e60ae7;p=thirdparty%2Fsquid.git Author: Matthew Morgan Incorrect function names in aclParseAclList debugging output. --- diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0f624dc3f5..a0f7a8325d 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -100,6 +100,7 @@ and ideas to make this software available. Martin Hamilton Masashi Fujita Massimo Zito + Matthew Morgan Max Okumoto Michael Lupp Michael Mansour diff --git a/src/acl/Gadgets.cc b/src/acl/Gadgets.cc index 1e555f0e69..692285262f 100644 --- a/src/acl/Gadgets.cc +++ b/src/acl/Gadgets.cc @@ -217,11 +217,11 @@ aclParseAclList(ConfigParser &parser, ACLList ** head) t++; } - debugs(28, 3, "aclParseAccessLine: looking for ACL name '" << t << "'"); + debugs(28, 3, "aclParseAclList: looking for ACL name '" << t << "'"); a = ACL::FindByName(t); if (a == NULL) { - debugs(28, 0, "aclParseAccessLine: ACL name '" << t << "' not found."); + debugs(28, 0, "aclParseAclList: ACL name '" << t << "' not found."); delete L; parser.destruct(); continue;