Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Panozzo <giovanni@panozzo.it>2020-01-17 12:48:50 +0300
committerGiovanni Panozzo <giovanni@panozzo.it>2020-01-17 12:48:50 +0300
commit5e5e571f7c9d0895009017788b92fa18fda38b3f (patch)
tree55fe4bd78f472a86c11e3af0c0871be4d27d44d1 /src/remmina_plugin_manager.c
parentd122b153d793b9cbe38a739abbe245efb252fa06 (diff)
ssh tunnel auth dialog and encryption fix
Diffstat (limited to 'src/remmina_plugin_manager.c')
-rw-r--r--src/remmina_plugin_manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remmina_plugin_manager.c b/src/remmina_plugin_manager.c
index 0f718bb15..fd6ff6432 100644
--- a/src/remmina_plugin_manager.c
+++ b/src/remmina_plugin_manager.c
@@ -102,8 +102,8 @@ static void init_settings_cache(RemminaPlugin *plugin)
/* Some settings are encrypted "by name" */
/* g_hash_table_insert(pht, g_strdup("proxy_password"), (gpointer)TRUE); */
- g_hash_table_insert(pht, g_strdup("ssh_password"), (gpointer)TRUE);
- g_hash_table_insert(pht, g_strdup("ssh_passphrase"), (gpointer)TRUE);
+ g_hash_table_insert(pht, g_strdup("ssh_tunnel_password"), (gpointer)TRUE);
+ g_hash_table_insert(pht, g_strdup("ssh_tunnel_passphrase"), (gpointer)TRUE);
/* Other settings are encrypted because of their type */
protocol_plugin = (RemminaProtocolPlugin *)plugin;