mirror of https://github.com/mirror/busybox.git
syslogd: do not convert tabs to ^I
parent
b304eadca8
commit
2ee028dd5b
|
@ -467,7 +467,7 @@ static void split_escape_and_log(char *tmpbuf, int len)
|
|||
while ((c = *p++)) {
|
||||
if (c == '\n')
|
||||
c = ' ';
|
||||
if (!(c & ~0x1f)) {
|
||||
if (!(c & ~0x1f) && c != '\t') {
|
||||
*q++ = '^';
|
||||
c += '@'; /* ^@, ^A, ^B... */
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue