GUACAMOLE-203: Fix issue using guac_client_log instead of guac_user_log.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/ed771140 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/ed771140 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/ed771140 Branch: refs/heads/master Commit: ed77114038dd7c6ef13517efe528b09074641d02 Parents: 8c24c77 Author: Nick Couchman <[email protected]> Authored: Wed Jun 14 13:01:01 2017 -0400 Committer: Nick Couchman <[email protected]> Committed: Wed Jun 14 13:01:01 2017 -0400 ---------------------------------------------------------------------- src/common-ssh/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/ed771140/src/common-ssh/ssh.c ---------------------------------------------------------------------- diff --git a/src/common-ssh/ssh.c b/src/common-ssh/ssh.c index 00f6327..50ab7e0 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."); }
