Author: gonzalo
Date: 2005-05-31 15:18:32 -0400 (Tue, 31 May 2005)
New Revision: 45266

Modified:
   trunk/mcs/class/System/System.ComponentModel/ChangeLog
   trunk/mcs/class/System/System.ComponentModel/Win32Exception.cs
Log:
2005-05-31 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.



Modified: trunk/mcs/class/System/System.ComponentModel/ChangeLog
===================================================================
--- trunk/mcs/class/System/System.ComponentModel/ChangeLog      2005-05-31 
18:41:20 UTC (rev 45265)
+++ trunk/mcs/class/System/System.ComponentModel/ChangeLog      2005-05-31 
19:18:32 UTC (rev 45266)
@@ -1,3 +1,7 @@
+2005-05-31 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.
+
 2005-05-15 Andreas Nahr <[EMAIL PROTECTED]>
 
        * IComponent.cs: Fix attributes

Modified: trunk/mcs/class/System/System.ComponentModel/Win32Exception.cs
===================================================================
--- trunk/mcs/class/System/System.ComponentModel/Win32Exception.cs      
2005-05-31 18:41:20 UTC (rev 45265)
+++ trunk/mcs/class/System/System.ComponentModel/Win32Exception.cs      
2005-05-31 19:18:32 UTC (rev 45266)
@@ -132,6 +132,9 @@
                        case 10048:
                                message = Locale.GetText ("Address already in 
use");
                                break;
+                       case 10049:
+                               message = Locale.GetText ("The requested 
address is not valid in this context");
+                               break;
                        case 10050:
                                message = Locale.GetText ("Network subsystem is 
down");
                                break;

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

Reply via email to