]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed typo: checkCallback should call the parent checkCallback method and
authorAlex Rousskov <rousskov@measurement-factory.com>
Fri, 20 Mar 2009 20:42:11 +0000 (14:42 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Fri, 20 Mar 2009 20:42:11 +0000 (14:42 -0600)
not itself.

src/acl/FilledChecklist.cc

index e27a00d1dd6f45ff18ed422f936eb9a3bae01f04..8c92a639b1a067f87433ac32b6e125a692b8a745 100644 (file)
@@ -97,7 +97,7 @@ ACLFilledChecklist::checkCallback(allow_t answer)
         conn()->auth_type = AUTH_BROKEN;
     }
 
-       ACLFilledChecklist::checkCallback(answer); // may delete us
+       ACLChecklist::checkCallback(answer); // may delete us
 }