GUACAMOLE-269: Clean up terminal backspace initialization.

This commit is contained in:
Nick Couchman 2018-04-02 07:47:49 -04:00
parent e16bfd7837
commit c898f35959

View File

@ -1600,9 +1600,7 @@ static int __guac_terminal_send_key(guac_terminal* term, int keysym, int pressed
/* Backspace can vary based on configuration of terminal by client. */ /* Backspace can vary based on configuration of terminal by client. */
if (keysym == 0xFF08) { if (keysym == 0xFF08) {
char backspace_str[2]; char backspace_str[] = { term->backspace, '\0' };
backspace_str[0] = term->backspace;
backspace_str[1] = '\0';
return guac_terminal_send_string(term, backspace_str); return guac_terminal_send_string(term, backspace_str);
} }
if (keysym == 0xFF09 || keysym == 0xFF89) return guac_terminal_send_string(term, "\x09"); /* Tab */ if (keysym == 0xFF09 || keysym == 0xFF89) return guac_terminal_send_string(term, "\x09"); /* Tab */