From 90d55956d0f42a6210dbec3f5561ad9b1ed20218 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Fri, 2 Aug 2019 23:20:44 -0400 Subject: [PATCH] GUACAMOLE-514: use correct client in log call. --- src/protocols/vnc/auth.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/protocols/vnc/auth.c b/src/protocols/vnc/auth.c index 0c39e94c..e03be531 100644 --- a/src/protocols/vnc/auth.c +++ b/src/protocols/vnc/auth.c @@ -55,8 +55,7 @@ rfbCredential* guac_vnc_get_credentials(rfbClient* client, int credentialType) { return creds; } - guac_client_log(client, GUAC_LOG_ERROR, - "Unknown credential type requested."); + guac_client_log(gc, GUAC_LOG_ERROR, "Unknown credential type requested."); return NULL; }