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, USAReceived on Wednesday, 23 June 1999 12:27:02 UTC
This archive was generated by hypermail 2.3.1 : Tuesday, 6 January 2015 21:33:49 UTC