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

gitlab.com/Remmina/remmina-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2019-11-01 03:23:40 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-11-01 03:23:40 +0300
commitf61920a95d22130259b3cceec867a9920d844aff (patch)
treebda110e8c070dd9d6001d3f2936c0997f2a55b2a
parentb6b32bed57ae775fc041737a6ce6aedf732059b9 (diff)
Spelling: GTK, Disconnect after first session, Listen for TCP connections
(cherry picked from commit 9fe2c90c89922952434ac8bc19ec91ac3f8bba1d)
-rw-r--r--xdmcp_plugin.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/xdmcp_plugin.c b/xdmcp_plugin.c
index cbbaa68..ac8109f 100644
--- a/xdmcp_plugin.c
+++ b/xdmcp_plugin.c
@@ -1,5 +1,5 @@
/*
- * Remmina - The GTK+ Remote Desktop Client
+ * Remmina - The GTK Remote Desktop Client
* Copyright (C) 2010 Vic Lee
* Copyright (C) 2014-2015 Antenore Gatta, Fabio Castelli, Giovanni Panozzo
* Copyright (C) 2016-2019 Antenore Gatta, Giovanni Panozzo
@@ -129,7 +129,7 @@ static gboolean remmina_plugin_xdmcp_start_xephyr(RemminaProtocolWidget *gp)
if (remmina_plugin_service->file_get_int(remminafile, "once", FALSE)) {
argv[argc++] = g_strdup("-once");
}
- /* Listen on protocol TCP */
+ /* Listen on TCP protocol */
if (remmina_plugin_service->file_get_int(remminafile, "listen_on_tcp", FALSE)) {
argv[argc++] = g_strdup("-listen");
argv[argc++] = g_strdup("tcp");
@@ -147,8 +147,8 @@ static gboolean remmina_plugin_xdmcp_start_xephyr(RemminaProtocolWidget *gp)
argv[argc++] = g_strdup_printf("%i", i);
}
}else {
- /* When the connection is through an SSH tunnel, it connects back to local unix socket,
- * so for security we can disable tcp listening */
+ /* When the connection is through an SSH tunnel, it connects back to local Unix socket,
+ * so for security we can disable TCP listening */
argv[argc++] = g_strdup("-nolisten");
argv[argc++] = g_strdup("tcp");
@@ -369,8 +369,8 @@ static const RemminaProtocolSetting remmina_plugin_xdmcp_basic_settings[] =
{ REMMINA_PROTOCOL_SETTING_TYPE_SELECT, "colordepth", N_("Color depth"), FALSE, colordepth_list, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "exec", N_("Startup program"), FALSE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "showcursor", N_("Use local cursor"), FALSE, NULL, NULL },
- { REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "once", N_("Disconnect after one session"), FALSE, NULL, NULL },
- { REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "listen_on_tcp", N_("Listening connection on protocol TCP"), FALSE, NULL, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "once", N_("Disconnect after first session"), FALSE, NULL, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "listen_on_tcp", N_("Listen for TCP connections"), FALSE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_END, NULL, NULL, FALSE, NULL, NULL }
};