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:
authorDavy Defaud <davy.defaud@free.fr>2019-01-27 22:39:44 +0300
committerDavy Defaud <davy.defaud@free.fr>2019-01-27 22:39:44 +0300
commitec60127de63fd9b5c2a0dc63c2243512323033c9 (patch)
treede58f83a9f195d77a72c37d54740b9c732dbb975 /src/remmina_sftp_plugin.c
parent7ef2ef486ad8abe22293c8a6e229f712310a6fe9 (diff)
Use uppercase for VNC, SSH, SFTP and RDP protocol names
Diffstat (limited to 'src/remmina_sftp_plugin.c')
-rw-r--r--src/remmina_sftp_plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remmina_sftp_plugin.c b/src/remmina_sftp_plugin.c
index 77b1bc73e..af55c4cfb 100644
--- a/src/remmina_sftp_plugin.c
+++ b/src/remmina_sftp_plugin.c
@@ -96,10 +96,10 @@ remmina_plugin_sftp_main_thread(gpointer data)
*
* */
remminafile = remmina_plugin_service->protocol_plugin_get_file(gp);
- /* We save the ssh server name, so that we can restore it at the end of the connection */
+ /* We save the SSH server name, so that we can restore it at the end of the connection */
saveserver = remmina_plugin_service->file_get_string(remminafile, "ssh_server");
remmina_plugin_service->file_set_string(remminafile, "save_ssh_server", g_strdup(saveserver));
- /* We save the ssh username, so that we can restore it at the end of the connection */
+ /* We save the SSH username, so that we can restore it at the end of the connection */
saveusername = remmina_plugin_service->file_get_string(remminafile, "ssh_username");
remmina_plugin_service->file_set_string(remminafile, "save_ssh_username", g_strdup(saveusername));
@@ -123,7 +123,7 @@ remmina_plugin_sftp_main_thread(gpointer data)
}
hostport = remmina_plugin_service->protocol_plugin_start_direct_tunnel(gp, 22, FALSE);
- /* We restore the ssh username as the tunnel is set */
+ /* We restore the SSH username as the tunnel is set */
remmina_plugin_service->file_set_string(remminafile, "ssh_username", g_strdup(saveusername));
if (hostport == NULL) {
return FALSE;