- From: Henrik Frystyk Nielsen <frystyk@w3.org>
- Date: Wed, 23 Jun 1999 12:26:53 -0400
- To: www-lib@w3.org
- To: Allen Comer <allen.comer@entropic.com>
Allen Comer wrote: > Modification #1 > ---------------------- > > original source: > if (!first) HTChunk_putc(cookie_header, ','); > > proposed change: > if (!first) HTChunk_puts(cookie_header, "; "); Checked in, see http://dev.w3.org/cgi-bin/cvsweb/libwww/Library/src/HTCookie.c#rev2.3 > Modification #2 > ---------------------- > > original source: > HTRequest_addExtraHeader(request, "Cookie", > HTChunk_data(cookie_header)); > > proposed change: > HTRequest_addExtraHeader(request, "Cookie: ", > HTChunk_data(cookie_header)); The colon is automatically added - it shouldn't have to be there. -- Henrik Frystyk Nielsen, <frystyk@w3.org> World Wide Web Consortium, MIT/LCS NE43-356 545 Technology Square, Cambridge MA 02139, USA
Received on Wednesday, 23 June 1999 12:27:02 UTC