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:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-11-25 16:30:34 +0300
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-11-27 16:25:57 +0300
commit138a062712dc5b908a9741b76631d7fb80183c70 (patch)
treeac4639377bf3d9eea4b696714b639c242ce18c88 /plugins/x2go
parent986a8f9b437eb01a6799d3ee2195ad42ac868454 (diff)
x2go_plugin.c: NO_INTERACTIVE --> NON_INTERACTIVE; --no-interactive --> --non-interactive
Diffstat (limited to 'plugins/x2go')
-rw-r--r--plugins/x2go/x2go_plugin.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/x2go/x2go_plugin.c b/plugins/x2go/x2go_plugin.c
index 495895675..5bc5a0e5a 100644
--- a/plugins/x2go/x2go_plugin.c
+++ b/plugins/x2go/x2go_plugin.c
@@ -1029,10 +1029,10 @@ static gboolean rmplugin_x2go_pyhoca_terminate_session(X2GoCustomUserData *custo
return G_SOURCE_REMOVE;
}
- if (FEATURE_AVAILABLE(gpdata, "NO_INTERACTIVE")) {
- argv[argc++] = g_strdup("--no-interactive");
+ if (FEATURE_AVAILABLE(gpdata, "NON_INTERACTIVE")) {
+ argv[argc++] = g_strdup("--non-interactive");
} else {
- REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NO_INTERACTIVE"));
+ REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NON_INTERACTIVE"));
}
argv[argc++] = NULL;
@@ -1606,10 +1606,10 @@ static gchar* rmplugin_x2go_get_pyhoca_sessions(RemminaProtocolWidget* gp, GErro
return NULL;
}
- if (FEATURE_AVAILABLE(gpdata, "NO_INTERACTIVE")) {
- argv[argc++] = g_strdup("--no-interactive");
+ if (FEATURE_AVAILABLE(gpdata, "NON_INTERACTIVE")) {
+ argv[argc++] = g_strdup("--non-interactive");
} else {
- REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NO_INTERACTIVE"));
+ REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NON_INTERACTIVE"));
}
if (password && FEATURE_AVAILABLE(gpdata, "PASSWORD")) {
@@ -2064,10 +2064,10 @@ static gboolean rmplugin_x2go_exec_x2go(gchar *host,
REMMINA_PLUGIN_DEBUG("%s", FEATURE_NOT_AVAIL_STR("AUTH_ATTEMPTS"));
}
- if (FEATURE_AVAILABLE(gpdata, "NO_INTERACTIVE")) {
- argv[argc++] = g_strdup("--no-interactive");
+ if (FEATURE_AVAILABLE(gpdata, "NON_INTERACTIVE")) {
+ argv[argc++] = g_strdup("--non-interactive");
} else {
- REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NO_INTERACTIVE"));
+ REMMINA_PLUGIN_WARNING("%s", FEATURE_NOT_AVAIL_STR("NON_INTERACTIVE"));
}
if (FEATURE_AVAILABLE(gpdata, "COMMAND")) {