]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polish: correct debug text about ACL 'AND' list match state
authorAmos Jeffries <squid3@treenet.co.nz>
Wed, 7 Dec 2011 11:46:49 +0000 (04:46 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Wed, 7 Dec 2011 11:46:49 +0000 (04:46 -0700)
src/acl/Checklist.cc

index 38d21d383cf8dafa195af928e3b8df7364301010..449f383422892bffc2a434b438c37fad4884e46b 100644 (file)
@@ -216,7 +216,6 @@ ACLChecklist::matchAclList(const ACLList * head, bool const fast)
         }
 
         if (!nodeMatched || state_ != NullState::Instance()) {
-            debugs(28, 3, "aclmatchAclList: " << this << " returning false (AND list entry failed to match)");
 
             bool async = state_ != NullState::Instance();
 
@@ -230,6 +229,7 @@ ACLChecklist::matchAclList(const ACLList * head, bool const fast)
                    " finished() = " << finished());
 
             if (finished()) {
+                debugs(28, 3, "aclmatchAclList: " << this << " returning (AND list entry failed to match)");
                 PROF_stop(aclMatchAclList);
                 return;
             }
@@ -240,8 +240,8 @@ ACLChecklist::matchAclList(const ACLList * head, bool const fast)
                 continue;
             }
 
+            debugs(28, 3, "aclmatchAclList: " << this << " returning (AND list entry awaiting an async lookup)");
             PROF_stop(aclMatchAclList);
-
             return;
         }