From: Alex Rousskov Date: Fri, 20 Mar 2009 20:42:11 +0000 (-0600) Subject: Fixed typo: checkCallback should call the parent checkCallback method and X-Git-Tag: SQUID_3_2_0_1~1109 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4c351de2b02dae8a1cf5d431fed984f12699ff4;p=thirdparty%2Fsquid.git Fixed typo: checkCallback should call the parent checkCallback method and not itself. --- diff --git a/src/acl/FilledChecklist.cc b/src/acl/FilledChecklist.cc index e27a00d1dd..8c92a639b1 100644 --- a/src/acl/FilledChecklist.cc +++ b/src/acl/FilledChecklist.cc @@ -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 }