From 2bebb96804f1bf6d0f573de53999f8ee8e368ef3 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Thu, 24 May 2018 09:24:48 -0400 Subject: [PATCH] GUACAMOLE-527: Fix host key options in the protocol settings. --- src/protocols/rdp/rdp_settings.c | 1 - src/protocols/ssh/settings.c | 1 - src/protocols/vnc/settings.c | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/protocols/rdp/rdp_settings.c b/src/protocols/rdp/rdp_settings.c index 2fe261ce..0af64437 100644 --- a/src/protocols/rdp/rdp_settings.c +++ b/src/protocols/rdp/rdp_settings.c @@ -84,7 +84,6 @@ const char* GUAC_RDP_CLIENT_ARGS[] = { #ifdef ENABLE_COMMON_SSH "enable-sftp", "sftp-hostname", - "sftp-host-key-type", "sftp-host-key", "sftp-port", "sftp-username", diff --git a/src/protocols/ssh/settings.c b/src/protocols/ssh/settings.c index 4a1c3710..7820cf63 100644 --- a/src/protocols/ssh/settings.c +++ b/src/protocols/ssh/settings.c @@ -32,7 +32,6 @@ /* Client plugin arguments */ const char* GUAC_SSH_CLIENT_ARGS[] = { "hostname", - "host-key-type", "host-key", "port", "username", diff --git a/src/protocols/vnc/settings.c b/src/protocols/vnc/settings.c index 130c97d5..27524e13 100644 --- a/src/protocols/vnc/settings.c +++ b/src/protocols/vnc/settings.c @@ -63,6 +63,7 @@ const char* GUAC_VNC_CLIENT_ARGS[] = { #ifdef ENABLE_COMMON_SSH "enable-sftp", "sftp-hostname", + "sftp-host-key", "sftp-port", "sftp-username", "sftp-password",