controller: fix keypair generation. Fixes #684

This commit is contained in:
Hylke Bons 2012-04-05 19:03:53 +01:00
parent 12a4aa5e1b
commit d8ecdc5e81

View file

@ -833,7 +833,7 @@ namespace SparkleShare {
process.StartInfo.FileName = "ssh-keygen";
process.StartInfo.CreateNoWindow = true;
process.StartInfo.Arguments = "-t rsa" + // crypto type
process.StartInfo.Arguments = "-t rsa " + // crypto type
"-P \"\" " + // password (none)
"-C \"" + System.Net.Dns.GetHostName () + "\" " + // key comment
"-f " + key_file_name; // file name