From fa86d18353737aaf944236340b9ca7ae978a455f Mon Sep 17 00:00:00 2001 From: Jimmy Date: Mon, 9 Mar 2020 23:16:28 +0200 Subject: [PATCH] GUACAMOLE-982: Fix the error log message when the creating thread of RDP client fails. --- src/protocols/rdp/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/rdp/user.c b/src/protocols/rdp/user.c index c2b487f6..62df34f7 100644 --- a/src/protocols/rdp/user.c +++ b/src/protocols/rdp/user.c @@ -71,7 +71,7 @@ int guac_rdp_user_join_handler(guac_user* user, int argc, char** argv) { if (pthread_create(&rdp_client->client_thread, NULL, guac_rdp_client_thread, user->client)) { guac_user_log(user, GUAC_LOG_ERROR, - "Unable to start VNC client thread."); + "Unable to start RDP client thread."); return 1; }