Просмотр исходного кода

* TcpClientChannel.cs: Fixed constructor.

svn path=/trunk/mcs/; revision=18078
Lluis Sanchez 22 лет назад
Родитель
Сommit
4bf9efefcd

+ 4 - 0
mcs/class/System.Runtime.Remoting/ChangeLog

@@ -1,3 +1,7 @@
+2003-09-14  Lluis Sanchez Gual <[email protected]>
+
+	* TcpClientChannel.cs: Fixed constructor.
+	
 2003-08-22  Lluis Sanchez Gual <[email protected]>
 
 	* System.Runtime.Remoting_test.dll.sources: Added DelegateCalls.cs test file.

+ 1 - 1
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpClientChannel.cs

@@ -30,7 +30,7 @@ namespace System.Runtime.Remoting.Channels.Tcp
 		{
 			priority = 1;
 
-			if (_sinkProvider != null)
+			if (sinkProvider != null)
 			{
 				_sinkProvider = sinkProvider;