Only send DA response if no private mode.

This commit is contained in:
Michael Jumper 2013-05-25 18:20:35 -07:00
parent f2520ca91c
commit 3a14c864a6

View File

@ -654,7 +654,7 @@ int guac_terminal_csi(guac_terminal* term, char c) {
/* c: Identify */
case 'c':
if (argv[0] == 0)
if (argv[0] == 0 && private_mode_character == 0)
guac_terminal_write_all(term->stdin_pipe_fd[1], "\x1B[?6c", 5);
break;