qrexec-client: Also allow the bell character

pull/10/head mm_c7ad1432
Rusty Bird 8 years ago
parent e005836286
commit c7ad14320f
No known key found for this signature in database
GPG Key ID: 469D78F47AAF2ADF

@ -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] = '_';
}
}

Loading…
Cancel
Save