From 4606607309761cca9f69dbd8e15be2376950dac3 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 30 Aug 2018 10:08:30 -0700 Subject: [PATCH] GUACAMOLE-622: Start terminal for SSH only after SSH connection succeeds. --- src/protocols/ssh/ssh.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/protocols/ssh/ssh.c b/src/protocols/ssh/ssh.c index 59554fb7..0760f29c 100644 --- a/src/protocols/ssh/ssh.c +++ b/src/protocols/ssh/ssh.c @@ -335,6 +335,7 @@ void* ssh_client_thread(void* data) { /* Logged in */ guac_client_log(client, GUAC_LOG_INFO, "SSH connection successful."); + guac_terminal_start(ssh_client->term); /* Start input thread */ if (pthread_create(&(input_thread), NULL, ssh_input_thread, (void*) client)) {