--------------------- PatchSet 1779 Date: 2001/03/27 08:17:45 Author: rbcollins Branch: ntlm Tag: (none) Log: bugfix: clear auth_user_request on broken connection auth Members: src/acl.c:1.1.1.3.12.42->1.1.1.3.12.43 Index: squid/src/acl.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/acl.c,v retrieving revision 1.1.1.3.12.42 retrieving revision 1.1.1.3.12.43 diff -u -r1.1.1.3.12.42 -r1.1.1.3.12.43 --- squid/src/acl.c 13 Mar 2001 12:15:25 -0000 1.1.1.3.12.42 +++ squid/src/acl.c 27 Mar 2001 08:17:45 -0000 1.1.1.3.12.43 @@ -1,6 +1,6 @@ /* - * $Id: acl.c,v 1.1.1.3.12.42 2001/03/13 12:15:25 rbcollins Exp $ + * $Id: acl.c,v 1.1.1.3.12.43 2001/03/27 08:17:45 rbcollins Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -1265,6 +1265,8 @@ debug(28, 4) ("aclMatchProxyAuth: Auth user request %d conn-auth user request %d conn type %d authentication failed.\n", auth_user_request, checklist->conn->auth_user_request, checklist->conn->auth_type); + authenticateAuthUserRequestUnlock(checklist->auth_user_request); + checklist->auth_user_request=NULL; return -2; } }