* UnixChannel.cs: fixed default ctor. * UnixServerChannel.cs: fixed GetUrlsForUri to return properly formatted unix URIs (the "?" was missing). svn path=/trunk/mcs/; revision=50786
@@ -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:
@@ -43,7 +43,7 @@ namespace Mono.Remoting.Channels.Unix
private string _name = "unix";
private int _priority = 1;
- public UnixChannel (): this ("")
+ public UnixChannel (): this (null)
{
}
@@ -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;