keys: fix build

This commit is contained in:
Hylke Bons 2012-07-14 13:21:11 +02:00
parent 2fca926b8d
commit da38caef60
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ namespace SparkleShare {
else
SparkleHelpers.DebugInfo ("Auth", "Could not create key pair '" + key_file_path + "'");
return return new string [] { key_file_path, key_file_path + ".pub" };
return new string [] { key_file_path, key_file_path + ".pub" };
}

View file

@ -294,7 +294,7 @@ namespace SparkleShare {
// Create an easily accessible copy of the public
// key in the user's SparkleShare folder
File.Copy (private_key_file_path + ".pub", link_code_file_path, true);
File.Copy (key_pair [1], link_code_file_path, true);
})
).Start ();