Author: lluis
Date: 2005-05-31 16:04:47 -0400 (Tue, 31 May 2005)
New Revision: 45269

Modified:
   trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog
   trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/TransportHeaders.cs
Log:
2005-05-31  Lluis Sanchez Gual  <[EMAIL PROTECTED]>

        * TransportHeaders.cs: This collection turns out to be case insensitive.



Modified: trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog   
2005-05-31 20:04:21 UTC (rev 45268)
+++ trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog   
2005-05-31 20:04:47 UTC (rev 45269)
@@ -1,3 +1,7 @@
+2005-05-31  Lluis Sanchez Gual  <[EMAIL PROTECTED]>
+
+       * TransportHeaders.cs: This collection turns out to be case insensitive.
+
 2005-03-10  Zoltan Varga  <[EMAIL PROTECTED]>
 
        * CrossAppDomainChannel.cs: Remove call to ResetDataStoreStatus ().

Modified: 
trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/TransportHeaders.cs
===================================================================
--- trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/TransportHeaders.cs 
2005-05-31 20:04:21 UTC (rev 45268)
+++ trunk/mcs/class/corlib/System.Runtime.Remoting.Channels/TransportHeaders.cs 
2005-05-31 20:04:47 UTC (rev 45269)
@@ -42,7 +42,7 @@
                
                public TransportHeaders ()
                {
-                       hash_table = new Hashtable ();
+                       hash_table = new Hashtable 
(CaseInsensitiveHashCodeProvider.Default, CaseInsensitiveComparer.Default);
                }
 
                public object this [object key]

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to