From: robertc <> Date: Sun, 28 Sep 2003 05:17:46 +0000 (+0000) Subject: Summary: BUGFIX: a checkFast update missed in the ident code. X-Git-Tag: SQUID_3_0_PRE4~1196 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=010af6e6d2b0b2a00616575af8ad7b3cf32fb5d6;p=thirdparty%2Fsquid.git Summary: BUGFIX: a checkFast update missed in the ident code. Keywords: BUGFIX: a checkFast update missed in the ident code. --- diff --git a/src/client_side.cc b/src/client_side.cc index 16848fc818..a499fcb52f 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.660 2003/09/21 00:30:46 robertc Exp $ + * $Id: client_side.cc,v 1.661 2003/09/27 23:17:46 robertc Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -2873,9 +2873,13 @@ httpsAccept(int sock, int newfd, ConnectionDetail *details, identChecklist.my_port = ntohs(details->me.sin_port); - if (aclCheckFast(Config.accessList.identLookup, &identChecklist)) + identChecklist.accessList = Config.accessList.identLookup; + + if (identChecklist.fastCheck()) identStart(&details->me, &details->peer, clientIdentDone, connState); + identChecklist.accessList = NULL; + #endif commSetSelect(newfd, COMM_SELECT_READ, clientNegotiateSSL, connState, 0);