[Mono-bugs] [Bug 65868][Maj] Changed - cookie case handled inconsistantly

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 13 Sep 2004 15:33:52 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by gonzalo@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=65868

--- shadow/65868	2004-09-13 13:25:50.000000000 -0400
+++ shadow/65868.tmp.6593	2004-09-13 15:33:52.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 65868
 Product: Mono: Class Libraries
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Major
 Component: System
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: lewing@ximian.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -16,6 +16,11 @@
 Cc: 
 Summary: cookie case handled inconsistantly
 
 HttpWebResponse calls ToUpper on cookie names, Cookie.Equals does a case
 insensitive compare of the name string, but CookieCollection does a case
 sensitive comparison of the cookie name when using the [string] accessor.
+
+------- Additional Comments From gonzalo@ximian.com  2004-09-13 15:33 -------
+In HttpWebResponse, ToUpper is only called before using the cookie
+name in a switch and that string is not used for anything else but
+switch case values.