fetcher: put quotes around host key file path. Fixes #815

This commit is contained in:
Hylke Bons 2012-06-28 11:57:10 +01:00
parent ee4be6c7f9
commit 744d4f2ffa
2 changed files with 2 additions and 1 deletions

View file

@ -232,7 +232,7 @@ namespace SparkleLib {
process.StartInfo.CreateNoWindow = true;
process.StartInfo.FileName = "ssh-keygen";
process.StartInfo.Arguments = "-lf " + tmp_file_path;
process.StartInfo.Arguments = "-lf \"" + tmp_file_path + "\"";
process.Start ();

View file

@ -155,6 +155,7 @@ namespace SparkleShare {
new PointF (-1, -1),
new SizeF (Frame.Width + 2, this.web_view.Frame.Height + 2)),
FillColor = NSColor.White,
BorderColor = NSColor.LightGray,
BoxType = NSBoxType.NSBoxCustom
};