Explorar el Código

2005-09-11 Robert Jordan <[email protected]>

	* UnixChannel.cs: fixed default ctor.
	* UnixServerChannel.cs: fixed GetUrlsForUri to return properly
	 formatted unix URIs (the "?" was missing).


svn path=/trunk/mcs/; revision=50786
Lluis Sanchez hace 20 años
padre
commit
317641cefa

+ 6 - 0
mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/ChangeLog

@@ -1,3 +1,9 @@
+2005-09-11  Robert Jordan  <[email protected]>
+
+	* UnixChannel.cs: fixed default ctor.
+	* UnixServerChannel.cs: fixed GetUrlsForUri to return properly
+	 formatted unix URIs (the "?" was missing).
+
 2005-08-24  Lluis Sanchez Gual  <[email protected]>
 
 	* UnixServerChannel.cs:

+ 1 - 1
mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/UnixChannel.cs

@@ -43,7 +43,7 @@ namespace Mono.Remoting.Channels.Unix
         private string _name = "unix";
         private int _priority = 1;
     
-        public UnixChannel (): this ("")
+        public UnixChannel (): this (null)
         {
         }
 

+ 1 - 1
mcs/class/Mono.Posix/Mono.Remoting.Channels.Unix/UnixServerChannel.cs

@@ -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;
         }