From: Amos Jeffries Date: Wed, 7 Dec 2011 11:46:49 +0000 (-0700) Subject: Polish: correct debug text about ACL 'AND' list match state X-Git-Tag: BumpSslServerFirst.take05~12^2~131 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d325a2eb8a20514ca649b0bed7db359bd0e333b9;p=thirdparty%2Fsquid.git Polish: correct debug text about ACL 'AND' list match state --- diff --git a/src/acl/Checklist.cc b/src/acl/Checklist.cc index 38d21d383c..449f383422 100644 --- a/src/acl/Checklist.cc +++ b/src/acl/Checklist.cc @@ -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; }