From 34c088882b2678a353a3ea101227fce9db42babf Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Tue, 16 Oct 2018 09:27:45 -0400 Subject: [PATCH] GUACAMOLE-527: Correct issue with order of VNC SFTP settings. --- src/protocols/vnc/settings.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/protocols/vnc/settings.c b/src/protocols/vnc/settings.c index 587864a4..8f65cfb2 100644 --- a/src/protocols/vnc/settings.c +++ b/src/protocols/vnc/settings.c @@ -197,6 +197,11 @@ enum VNC_ARGS_IDX { */ IDX_SFTP_HOSTNAME, + /** + * The public SSH host key to identify the SFTP server. + */ + IDX_SFTP_HOST_KEY, + /** * The port of the SSH server to connect to for SFTP. If blank, the default * SSH port of "22" will be used. @@ -209,11 +214,6 @@ enum VNC_ARGS_IDX { */ IDX_SFTP_USERNAME, - /** - * The public SSH host key to identify the SFTP server. - */ - IDX_SFTP_HOST_KEY, - /** * The password to provide when authenticating with the SSH server for * SFTP (if not using a private key).