2005-09-11 Robert Jordan <robertj@gmx.net>
authorLluis Sanchez <lluis@novell.com>
Mon, 26 Sep 2005 16:26:35 +0000 (16:26 -0000)
committerLluis Sanchez <lluis@novell.com>
Mon, 26 Sep 2005 16:26:35 +0000 (16:26 -0000)
* UnixChannel.cs: fixed default ctor.
* UnixServerChannel.cs: fixed GetUrlsForUri to return properly
 formatted unix URIs (the "?" was missing).

svn path=/trunk/mcs/; revision=50786

mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/ChangeLog
mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/UnixChannel.cs
mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/UnixServerChannel.cs

index b44a915197e721172f536d581aa13f12e3300a8c..a83311e81e45155a24df7d519334991e7b8e8134 100644 (file)
@@ -1,3 +1,9 @@
+2005-09-11  Robert Jordan  <robertj@gmx.net>
+
+       * UnixChannel.cs: fixed default ctor.
+       * UnixServerChannel.cs: fixed GetUrlsForUri to return properly
+        formatted unix URIs (the "?" was missing).
+
 2005-08-24  Lluis Sanchez Gual  <lluis@novell.com>
 
        * UnixServerChannel.cs:
index 373459dc4324a1beed4ca5052fccc289118baa06..f809c720f4dfa7f434f3315791cd7172dea45ecf 100644 (file)
@@ -43,7 +43,7 @@ namespace Mono.Remoting.Channels.Unix
         private string _name = "unix";
         private int _priority = 1;
     
-        public UnixChannel (): this ("")
+        public UnixChannel (): this (null)
         {
         }
 
index 49847a7e2332b7e9d17a1e8fd184699c39a23767..2b720b9cb858adae32a7ac72065fb0b6f34748ca 100644 (file)
@@ -157,7 +157,7 @@ namespace Mono.Remoting.Channels.Unix
             string [] result = new String [chnl_uris.Length];
 
             for (int i = 0; i < chnl_uris.Length; i++) 
-                result [i] = chnl_uris [i] + uri;
+                result [i] = chnl_uris [i] + "?" + uri;
             
             return result;
         }