qrexec-client: Also allow the bell character

(cherry picked from commit c7ad14320f)
This commit is contained in:
Rusty Bird 2016-08-17 13:10:13 +00:00 committed by Marek Marczykowski-Górecki
parent 16fc1fc489
commit 858c4c289a
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -342,7 +342,8 @@ void do_replace_chars(char *buf, int len) {
(c != '\t') && /* not tab */ (c != '\t') && /* not tab */
(c != '\n') && /* not newline */ (c != '\n') && /* not newline */
(c != '\r') && /* not return */ (c != '\r') && /* not return */
(c != '\b')) /* not backspace */ (c != '\b') && /* not backspace */
(c != '\a')) /* not bell */
buf[i] = '_'; buf[i] = '_';
} }
} }