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:
authorEspen Tveit <espen@tveit.io>2020-07-23 02:40:48 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-07-23 02:40:48 +0300
commit1508c8e7b11fd8d62de91d45cda240e48a14424d (patch)
treec88a3cb459647c0a9ca1b98f444f72c2a16f44f1 /src/remmina.c
parenta60b6f0479e7ba18c9c5271cd11a01cf13750618 (diff)
Make local variables reusable (not prefixed with type). Format code using uncrustify. Add indication that URI may be used in remmina --help. Add some examples to man page.
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina.c b/src/remmina.c
index 0d0dc7d96..25563ee35 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -83,7 +83,7 @@ static GOptionEntry remmina_options[] =
// TRANSLATORS: Shown in terminal. Do not use characters that may be not supported on a terminal
{ "about", 'a', 0, G_OPTION_ARG_NONE, NULL, N_("Show \'About\'"), NULL },
// TRANSLATORS: Shown in terminal. Do not use characters that may be not supported on a terminal
- { "connect", 'c', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect either to a desktop described in a file (.remmina or a filetype supported by a plugin) or a supported URI (RDP, VNC or SPICE)"), N_("FILE") },
+ { "connect", 'c', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect either to a desktop described in a file (.remmina or a filetype supported by a plugin) or a supported URI (RDP, VNC, SSH or SPICE)"), N_("FILE") },
// TRANSLATORS: Shown in terminal. Do not use characters that may be not supported on a terminal
{ G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect to a desktop described in a file (.remmina or a type supported by a plugin)"), N_("FILE") },
// TRANSLATORS: Shown in terminal. Do not use characters that may be not supported on a terminal