Cookie.toString() contains 'name' instead of 'value' when writing out cookie
value
----------------------------------------------------------------------------------
Key: HTTPCLIENT-754
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-754
Project: HttpComponents HttpClient
Issue Type: Bug
Components: HttpCookie
Affects Versions: 4.0 Alpha 3
Reporter: Thomas Friol
Priority: Trivial
{noformat}
buffer.append("[name: ");
buffer.append(this.value);
{noformat}
should be
{noformat}
buffer.append("[value: ");
buffer.append(this.value);
{noformat}
Will provide a patch soon.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]