From: Matthew Morgan Date: Tue, 22 Dec 2009 23:24:28 +0000 (+1100) Subject: Incorrect function names in aclParseAclList debugging output. X-Git-Tag: SQUID_3_2_0_1~491 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b215224fb94d1ad3f0d0a2a7315375a097984d2;p=thirdparty%2Fsquid.git Incorrect function names in aclParseAclList debugging output. --- diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 128cc7216f..a355114f1c 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;