qrexec-client: Also allow the bell character

This commit is contained in:
Rusty Bird 2016-08-17 13:10:13 +00:00
parent e005836286
commit c7ad14320f
No known key found for this signature in database
GPG Key ID: 469D78F47AAF2ADF

View File

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