--------------------- PatchSet 6136 Date: 2004/02/04 17:15:26 Author: hno Branch: ntlmcleanup Tag: (none) Log: Moved the warning about invalid cbdata on aborted to debug level 2. these messages are not really interesting to the end-user. Members: src/auth/ntlm/auth_ntlm.c:1.18.2.4.12.2->1.18.2.4.12.3 Index: squid/src/auth/ntlm/auth_ntlm.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/auth/ntlm/auth_ntlm.c,v retrieving revision 1.18.2.4.12.2 retrieving revision 1.18.2.4.12.3 diff -u -r1.18.2.4.12.2 -r1.18.2.4.12.3 --- squid/src/auth/ntlm/auth_ntlm.c 4 Feb 2004 14:33:55 -0000 1.18.2.4.12.2 +++ squid/src/auth/ntlm/auth_ntlm.c 4 Feb 2004 17:15:26 -0000 1.18.2.4.12.3 @@ -449,7 +449,7 @@ /* standard callback stuff */ valid = cbdataValid(r->data); if (!valid) { - debug(29, 1) ("AuthenticateNTLMHandlePlacheholder: invalid callback data.\n"); + debug(29, 2) ("AuthenticateNTLMHandlePlacheholder: invalid callback data.\n"); helperStatefulReleaseServer(srv); return; } @@ -474,7 +474,7 @@ debug(29, 9) ("authenticateNTLMHandleReply: Helper: '%p' {%s}\n", srv, reply ? reply : ""); valid = cbdataValid(r->data); if (!valid) { - debug(29, 1) ("AuthenticateNTLMHandleReply: invalid callback data. Releasing helper '%p'.\n", srv); + debug(29, 2) ("AuthenticateNTLMHandleReply: invalid callback data. Releasing helper '%p'.\n", srv); cbdataUnlock(r->data); authenticateStateFree(r); helperStatefulReleaseServer(srv);