diff --git a/src/rc/rc-logger.c b/src/rc/rc-logger.c index 1da3f59c..062ce3d9 100644 --- a/src/rc/rc-logger.c +++ b/src/rc/rc-logger.c @@ -87,9 +87,8 @@ write_log(int logfd, const char *buffer, size_t bytes) } if (!in_escape) { - if (isprint((unsigned char) *p) || *p == '\n') - if (write(logfd, p++, 1) == -1) - eerror("write: %s", strerror(errno)); + if (write(logfd, p++, 1) == -1) + eerror("write: %s", strerror(errno)); continue; }