]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Incorrect function names in aclParseAclList debugging output.
authorMatthew Morgan <atcs.matthew@gmail.com>
Tue, 22 Dec 2009 23:24:28 +0000 (10:24 +1100)
committerRobert Collins <robertc@robertcollins.net>
Tue, 22 Dec 2009 23:24:28 +0000 (10:24 +1100)
CONTRIBUTORS
src/acl/Gadgets.cc

index 128cc7216f6e386cbe744da1baf4f7626a153caa..a355114f1c78ce94967f8c51b09be2bb06e07c7d 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;