icap_access curently treats AUTH_REQUIRED ACL results as a
false-negative 'fail' result. This is not the desired behavior,
but is not bad enough to be treated as an actual bug at this point.
{
debugs(93, 8, "AccessCheckCallbackWrapper: answer=" << answer);
AccessCheck *ac = (AccessCheck*)data;
+
+ /** \todo AYJ 2008-06-12: If answer == ACCESS_REQ_PROXY_AUTH
+ * we should be kicking off an authentication before continuing
+ * with this request. see bug 2400 for details.
+ */
ac->noteAnswer(answer==ACCESS_ALLOWED);
}