--------------------- PatchSet 1968 Date: 2005/10/23 08:54:21 Author: hno Branch: negotiate Tag: (none) Log: Forgot to set the header type... Members: src/auth/negotiate/auth_negotiate.cc:1.1.2.3->1.1.2.4 Index: squid3/src/auth/negotiate/auth_negotiate.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/auth/negotiate/auth_negotiate.cc,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -r1.1.2.3 -r1.1.2.4 --- squid3/src/auth/negotiate/auth_negotiate.cc 23 Oct 2005 08:48:50 -0000 1.1.2.3 +++ squid3/src/auth/negotiate/auth_negotiate.cc 23 Oct 2005 08:54:21 -0000 1.1.2.4 @@ -1,6 +1,6 @@ /* - * $Id: auth_negotiate.cc,v 1.1.2.3 2005/10/23 08:48:50 hno Exp $ + * $Id: auth_negotiate.cc,v 1.1.2.4 2005/10/23 08:54:21 hno Exp $ * * DEBUG: section 29 Negotiate Authenticator * AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli @@ -278,6 +278,8 @@ || (accel && rep->sline.status == HTTP_UNAUTHORIZED)) return; + type = accel ? HDR_AUTHENTICATION_INFO : HDR_PROXY_AUTHENTICATION_INFO; + httpHeaderPutStrf(&rep->header, type, "Negotiate %s", server_blob); safe_free(server_blob); }