From dc490a714ea81c08f3e1a6ff3940af1ac605403e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 1 Dec 2013 16:27:19 -0800 Subject: [PATCH] Remove old options code. --- src/protocols/ssh/ssh_client.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/protocols/ssh/ssh_client.c b/src/protocols/ssh/ssh_client.c index 2dd6748e..f433fbdf 100644 --- a/src/protocols/ssh/ssh_client.c +++ b/src/protocols/ssh/ssh_client.c @@ -224,13 +224,6 @@ static LIBSSH2_SESSION* __guac_ssh_create_session(guac_client* client) { return NULL; } - /* Set session options */ -#if 0 - ssh_options_set(session, SSH_OPTIONS_HOST, client_data->hostname); - ssh_options_set(session, SSH_OPTIONS_PORT, &(client_data->port)); - ssh_options_set(session, SSH_OPTIONS_USER, client_data->username); -#endif - /* Authenticate with key if available */ #if 0 if (client_data->key != NULL) {