Skip to content

Commit

Permalink
2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Browse files Browse the repository at this point in the history
	* Process.cs: always pass the same arguments to the runtime.


svn path=/branches/mono-1-0/mcs/; revision=37244
  • Loading branch information
gonzalop committed Dec 6, 2004
1 parent 46575c2 commit e614a20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions mcs/class/System/System.Diagnostics/ChangeLog
@@ -1,3 +1,7 @@
2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Process.cs: always pass the same arguments to the runtime.

2004-09-07 Dick Porter <dick@ximian.com>

* Process.cs: Throw documented exceptions when getting stdin,
Expand Down
6 changes: 1 addition & 5 deletions mcs/class/System/System.Diagnostics/Process.cs
Expand Up @@ -796,11 +796,7 @@ public void Kill ()
cmdline = startInfo.FileName + " " + startInfo.Arguments.Trim ();
} else {
appname = startInfo.FileName;
// FIXME: There seems something wrong in process.c. We should not require extraneous command line
if (Path.DirectorySeparatorChar == '\\')
cmdline = appname + " " + startInfo.Arguments.Trim ();
else
cmdline = startInfo.Arguments.Trim ();
cmdline = startInfo.Arguments.Trim ();
}

ret=Start_internal(appname,
Expand Down

0 comments on commit e614a20

Please sign in to comment.