Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2004-05-03 23:26:58 +0400
committerLluis Sanchez <lluis@novell.com>2004-05-03 23:26:58 +0400
commit8450b5abbd9ec36951ef52e62704050680613411 (patch)
treeec3246fb7ef8a1a33a417248d71508179e090e04 /mcs/class/System/System.Net.Sockets
parentd51db8022f0dd23eb157ce4461c27eb86648147b (diff)
* Socket.cs: Use assembly name const to load Mono.Posix.
svn path=/trunk/mcs/; revision=26627
Diffstat (limited to 'mcs/class/System/System.Net.Sockets')
-rw-r--r--mcs/class/System/System.Net.Sockets/ChangeLog4
-rw-r--r--mcs/class/System/System.Net.Sockets/Socket.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net.Sockets/ChangeLog b/mcs/class/System/System.Net.Sockets/ChangeLog
index 1ad64f748e3..ae8e82ce52d 100644
--- a/mcs/class/System/System.Net.Sockets/ChangeLog
+++ b/mcs/class/System/System.Net.Sockets/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-03 Lluis Sanchez Gual <lluis@ximian.com>
+
+ * Socket.cs: Use assembly name const to load Mono.Posix.
+
2004-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Socket.cs: only enable socket AIO if MONO_ENABLE_SOCKET_AIO is there.
diff --git a/mcs/class/System/System.Net.Sockets/Socket.cs b/mcs/class/System/System.Net.Sockets/Socket.cs
index 787f795e790..6c91f6b31fc 100644
--- a/mcs/class/System/System.Net.Sockets/Socket.cs
+++ b/mcs/class/System/System.Net.Sockets/Socket.cs
@@ -415,7 +415,7 @@ namespace System.Net.Sockets
Assembly ass;
try {
- ass=Assembly.Load("Mono.Posix");
+ ass = Assembly.Load (Consts.AssemblyMono_Posix);
} catch (FileNotFoundException) {
return;
}