--------------------- PatchSet 7115 Date: 2005/10/22 14:09:35 Author: hno Branch: negotiate-2_5 Tag: (none) Log: Fix blob pointer. Thanks Guido! Members: src/auth/ntlm/auth_ntlm.c:1.18.2.14.2.7->1.18.2.14.2.8 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.14.2.7 retrieving revision 1.18.2.14.2.8 diff -u -r1.18.2.14.2.7 -r1.18.2.14.2.8 --- squid/src/auth/ntlm/auth_ntlm.c 24 Sep 2005 22:53:00 -0000 1.18.2.14.2.7 +++ squid/src/auth/ntlm/auth_ntlm.c 22 Oct 2005 14:09:35 -0000 1.18.2.14.2.8 @@ -434,6 +434,9 @@ /* seperate out the useful data */ blob = strchr(reply, ' '); + if (blob) { + blob++; + } if (strncasecmp(reply, "TT ", 3) == 0 && blob != NULL) { /* we have been given a blob to send to the client */