]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Matthew Morgan <atcs.matthew@gmail.com>
authorAmos Jeffries <squid3@treenet.co.nz>
Wed, 13 Jan 2010 04:42:35 +0000 (17:42 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Wed, 13 Jan 2010 04:42:35 +0000 (17:42 +1300)
Incorrect function names in aclParseAclList debugging output.

CONTRIBUTORS
src/acl/Gadgets.cc

index 0f624dc3f5ba637279a8536d042fe1a333d729c8..a0f7a8325d673ba98548ef66d21e3689d4b5a70e 100644 (file)
@@ -100,6 +100,7 @@ and ideas to make this software available.
     Martin Hamilton <martin@mrrl.lut.ac.uk>
     Masashi Fujita <objectx@bandit.co.jp>
     Massimo Zito <zmax.linkedin at gmail dot com>
+    Matthew Morgan <atcs.matthew@gmail.com>
     Max Okumoto <okumoto@ucsd.edu>
     Michael Lupp <mike@nemesis.saar.de>
     Michael Mansour <mic@shell.gnxs.com.au>
index 1e555f0e6986a909f0c9b29695693cf575b7cd69..692285262f2d8bf6c2908a6ffa0d954ffd6eb2f7 100644 (file)
@@ -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;