summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'log.c')
-rw-r--r--log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c
index 6bbae32da..5a28438f9 100644
--- a/log.c
+++ b/log.c
@@ -391,7 +391,7 @@ do_log(LogLevel level, const char *fmt, va_list args)
391 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args); 391 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
392 } 392 }
393 /* Escape magic chars in output. */ 393 /* Escape magic chars in output. */
394 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf), VIS_OCTAL); 394 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf), VIS_SAFE|VIS_OCTAL);
395 395
396 if (log_on_stderr) { 396 if (log_on_stderr) {
397 snprintf(fmtbuf, sizeof fmtbuf, "%s\r\n", msgbuf); 397 snprintf(fmtbuf, sizeof fmtbuf, "%s\r\n", msgbuf);