I was doing some research in acl/Gadgets.cc and noticed a typo in some debugging output. Here's a patch to fix it. I hope I generated it right...let me know if I didn't.
--- Gadgets.cc	2009-12-22 17:52:05.000000000 -0500
+++ src/acl/Gadgets.cc	2009-12-22 17:53:26.000000000 -0500
@@ -217,11 +217,11 @@
             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;

Reply via email to