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:
authorMichael Hutchinson <mhutchinson@novell.com>2008-09-24 02:36:04 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2008-09-24 02:36:04 +0400
commit245f79b651af761ca0929d77f14c06e77e56b5fa (patch)
tree1e8a0589909eef45ca213a7197ce500f4835986f
parent325b17c5e635c6deef3395a62a1762ea3a1ce018 (diff)
2008-09-23 Michael Hutchinson <mhutchinson@novell.com>mono-2-0-rc3
* HttpClientChannel.cs: Fix logic error from ==/!= typo. Stops channel from trying to handle IPC URLs, which was breaking the IPC tests. svn path=/branches/mono-2-0/mcs/; revision=113908
-rw-r--r--mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/ChangeLog6
-rw-r--r--mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/HttpClientChannel.cs2
2 files changed, 7 insertions, 1 deletions
diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/ChangeLog b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/ChangeLog
index 5d38dc0341f..fdf66ba3016 100644
--- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/ChangeLog
+++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Michael Hutchinson <mhutchinson@novell.com>
+
+ * HttpClientChannel.cs: Fix logic error from ==/!= typo. Stops
+ channel from trying to handle IPC URLs, which was breaking the
+ IPC tests.
+
2008-09-19 Michael Hutchinson <mhutchinson@novell.com>
* HttpServerChannel.cs:
diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/HttpClientChannel.cs b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/HttpClientChannel.cs
index 85b3a70312d..b8eea16af24 100644
--- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/HttpClientChannel.cs
+++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Http/HttpClientChannel.cs
@@ -245,7 +245,7 @@ namespace System.Runtime.Remoting.Channels.Http
public virtual IMessageSink CreateMessageSink (string url, object remoteChannelData, out string objectURI)
{
//Mostly copied from TcpClientChannel
- if (url == null || Parse (url, out objectURI) != null) {
+ if (url == null || Parse (url, out objectURI) == null) {
if (remoteChannelData != null) {
IChannelDataStore ds = remoteChannelData as IChannelDataStore;
if (ds != null && ds.ChannelUris.Length > 0)