dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnetlib ChangeLog System/Net/Sockets/SocketExce...


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnetlib ChangeLog System/Net/Sockets/SocketExce...
Date: Tue, 16 Jan 2007 18:11:39 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnetlib
Changes by:     Klaus Treichel <ktreichel>      07/01/16 18:11:39

Modified files:
        .              : ChangeLog 
        System/Net/Sockets: SocketException.cs 

Log message:
                * System/Net/Sockets/SocketException.cs: Pass errno to the base 
class
                constructor for !ECMA_COMPAT (Bug# 18786).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnetlib/ChangeLog?cvsroot=dotgnu-pnet&r1=1.2461&r2=1.2462
http://cvs.savannah.gnu.org/viewcvs/pnetlib/System/Net/Sockets/SocketException.cs?cvsroot=dotgnu-pnet&r1=1.12&r2=1.13

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/ChangeLog,v
retrieving revision 1.2461
retrieving revision 1.2462
diff -u -b -r1.2461 -r1.2462
--- ChangeLog   16 Jan 2007 17:25:20 -0000      1.2461
+++ ChangeLog   16 Jan 2007 18:11:39 -0000      1.2462
@@ -3,6 +3,9 @@
        * runtime/System/IO/FileStream.cs: Writing in a read/write filestream 
after
        some data was read and the fileposition was changed. (Bug #18319)
 
+       * System/Net/Sockets/SocketException.cs: Pass errno to the base class
+       constructor for !ECMA_COMPAT (Bug# 18786).
+
 2007-01-16  Klaus Treichel  <address@hidden>
 
        * tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs:

Index: System/Net/Sockets/SocketException.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/Net/Sockets/SocketException.cs,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- System/Net/Sockets/SocketException.cs       19 Oct 2005 13:46:42 -0000      
1.12
+++ System/Net/Sockets/SocketException.cs       16 Jan 2007 18:11:39 -0000      
1.13
@@ -71,7 +71,11 @@
 
        // Internal constructors that are used to set correct error codes.
        internal SocketException(Errno errno)
+#if !ECMA_COMPAT
+               : base((int)errno, DefaultMessage(null, errno))
+#else
                : base(DefaultMessage(null, errno))
+#endif
                {
                        this.errno = errno;
                }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]