--------------------- PatchSet 530 Date: 2000/08/11 14:11:08 Author: rbcollins Branch: ntlm Tag: (none) Log: more debugging Members: src/acl.c:1.1.1.3.12.13->1.1.1.3.12.14 Index: squid/src/acl.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/acl.c,v retrieving revision 1.1.1.3.12.13 retrieving revision 1.1.1.3.12.14 diff -u -r1.1.1.3.12.13 -r1.1.1.3.12.14 --- squid/src/acl.c 11 Aug 2000 14:00:56 -0000 1.1.1.3.12.13 +++ squid/src/acl.c 11 Aug 2000 14:11:08 -0000 1.1.1.3.12.14 @@ -1,6 +1,6 @@ /* - * $Id: acl.c,v 1.1.1.3.12.13 2000/08/11 14:00:56 rbcollins Exp $ + * $Id: acl.c,v 1.1.1.3.12.14 2000/08/11 14:11:08 rbcollins Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -1443,7 +1443,7 @@ * You should be able to reuse the auth* variable in the connection structure as the state machine _should_ avoid collisions. */ - debug(28, 5) ("aclLookupProxyAuthStart: going to ask NTLM authenticator on %s\n", proxy_auth); + debug(28, 5) ("aclLookupProxyStatefulAuthStart: going to ask NTLM authenticator on %s\n", proxy_auth); /* stateful authentication has no timeouts/ip storage etc */ sent_string=xstrdup(proxy_auth); @@ -1452,7 +1452,10 @@ while(xisspace(*sent_string)) /*trim leading spaces*/ sent_string++; if(checklist->conn->auth_state!=AUTHENTICATE_STATE_NEGOTIATE) + { assert(checklist->conn->authhelper); + debug(28,6)("aclLookupProxyStatefulAuthStart: Asking NTLM authenticator '%d' on FD '%d'\n",checklist->conn->authhelper,checklist->conn->fd); + } authenticateNTLMStart(sent_string, aclLookupProxyNTLMAuthDone, checklist, checklist->conn->authhelper); } #endif /*NTLM*/