From 80f0b7e1e1687a8dbcde36372d2a09b9363ed102 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 29 Mar 2013 18:27:27 -0700 Subject: [PATCH] Remove Unicode translation warnings, as the functionality is intentional. --- protocols/rdp/src/guac_handlers.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/protocols/rdp/src/guac_handlers.c b/protocols/rdp/src/guac_handlers.c index 3880b5a9..8640f31c 100644 --- a/protocols/rdp/src/guac_handlers.c +++ b/protocols/rdp/src/guac_handlers.c @@ -361,9 +361,6 @@ int __guac_rdp_send_keysym(guac_client* client, int keysym, int pressed) { return 0; } - guac_client_log_info(client, "Translated keysym 0x%x to U+%04X", - keysym, codepoint); - pthread_mutex_lock(&(guac_client_data->rdp_lock)); /* Send Unicode event */ @@ -375,9 +372,6 @@ int __guac_rdp_send_keysym(guac_client* client, int keysym, int pressed) { } - else - guac_client_log_info(client, "Ignoring key release (Unicode event)"); - return 0; }