From ed77114038dd7c6ef13517efe528b09074641d02 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Wed, 14 Jun 2017 13:01:01 -0400 Subject: [PATCH] GUACAMOLE-203: Fix issue using guac_client_log instead of guac_user_log. --- src/common-ssh/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common-ssh/ssh.c b/src/common-ssh/ssh.c index 00f6327a..50ab7e0b 100644 --- a/src/common-ssh/ssh.c +++ b/src/common-ssh/ssh.c @@ -538,7 +538,7 @@ guac_common_ssh_session* guac_common_ssh_create_session(guac_client* client, /* Warn if keepalive below minimum value */ if (keepalive == 1) { - guac_user_log(user, GUAC_LOG_WARNING, "keepalive interval will " + guac_client_log(client, GUAC_LOG_WARNING, "keepalive interval will " "be rounded up to minimum value of 2."); }