* CookieContainer.cs: quote the port number. svn path=/trunk/mcs/; revision=37630
@@ -1,3 +1,7 @@
+2004-12-11 Gonzalo Paniagua Javier <[email protected]>
+
+ * CookieContainer.cs: quote the port number.
2004-12-10 Gonzalo Paniagua Javier <[email protected]>
* WebConnection.cs:
@@ -173,7 +173,7 @@ namespace System.Net
}
if (cookie.Port == "" && uri != null && !uri.IsDefaultPort) {
- cookie.Port = uri.Port.ToString ();
+ cookie.Port = "\"" + uri.Port.ToString () + "\"";