From 07d3e45de44bbdefe0823957981892f00ee0671c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 4 Jun 2011 15:15:58 +0100 Subject: [PATCH] controller: remove SparkleKeysPath; it's the same as SparkleConfigPath --- SparkleShare/SparkleController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index 4968723c..3cf0785e 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -704,7 +704,7 @@ namespace SparkleShare { // so all activity is done with this key public void AddKey () { - string keys_path = SparklePaths.SparkleKeysPath; + string keys_path = SparklePaths.SparkleConfigPath; string key_file_name = "sparkleshare." + UserEmail + ".key"; Process process = new Process (); @@ -753,7 +753,7 @@ namespace SparkleShare { // Generates and installs an RSA keypair to identify this system public void GenerateKeyPair () { - string keys_path = SparklePaths.SparkleKeysPath; + string keys_path = SparklePaths.SparkleConfigPath; string key_file_name = "sparkleshare." + UserEmail + ".key"; string key_file_path = Path.Combine (keys_path, key_file_name);