]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: BUGFIX: a checkFast update missed in the ident code.
authorrobertc <>
Sun, 28 Sep 2003 05:17:46 +0000 (05:17 +0000)
committerrobertc <>
Sun, 28 Sep 2003 05:17:46 +0000 (05:17 +0000)
Keywords:

BUGFIX: a checkFast update missed in the ident code.

src/client_side.cc

index 16848fc818d8f0b18a73c838016a21587f2c0c8f..a499fcb52f3793215faee243b65bf1977da0662f 100644 (file)
@@ -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);