GUACAMOLE-527: Fix host key options in the protocol settings.

This commit is contained in:
Nick Couchman 2018-05-24 09:24:48 -04:00 committed by Nick Couchman
parent 551598e0a4
commit 2bebb96804
3 changed files with 1 additions and 2 deletions

View File

@ -84,7 +84,6 @@ const char* GUAC_RDP_CLIENT_ARGS[] = {
#ifdef ENABLE_COMMON_SSH #ifdef ENABLE_COMMON_SSH
"enable-sftp", "enable-sftp",
"sftp-hostname", "sftp-hostname",
"sftp-host-key-type",
"sftp-host-key", "sftp-host-key",
"sftp-port", "sftp-port",
"sftp-username", "sftp-username",

View File

@ -32,7 +32,6 @@
/* Client plugin arguments */ /* Client plugin arguments */
const char* GUAC_SSH_CLIENT_ARGS[] = { const char* GUAC_SSH_CLIENT_ARGS[] = {
"hostname", "hostname",
"host-key-type",
"host-key", "host-key",
"port", "port",
"username", "username",

View File

@ -63,6 +63,7 @@ const char* GUAC_VNC_CLIENT_ARGS[] = {
#ifdef ENABLE_COMMON_SSH #ifdef ENABLE_COMMON_SSH
"enable-sftp", "enable-sftp",
"sftp-hostname", "sftp-hostname",
"sftp-host-key",
"sftp-port", "sftp-port",
"sftp-username", "sftp-username",
"sftp-password", "sftp-password",