summaryrefslogtreecommitdiffstats
path: root/log.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-23 18:43:40 +1000
committerDamien Miller <djm@mindrot.org>2003-05-23 18:43:40 +1000
commitd419bdae777eee388e9f5a6f0e12fdd76981bac0 (patch)
tree197fe453493006f871d8256ec7db809a0f7f92f5 /log.c
parent1340ec297b94f39785190793ffb915e6729702f0 (diff)
- (djm) Use VIS_SAFE on logged strings rather than default strnvis
encoding (which encodes many more characters)
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 6bbae32d..5a28438f 100644
--- a/log.c
+++ b/log.c
@@ -391,7 +391,7 @@ do_log(LogLevel level, const char *fmt, va_list args)
vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
}
/* Escape magic chars in output. */
- strnvis(fmtbuf, msgbuf, sizeof(fmtbuf), VIS_OCTAL);
+ strnvis(fmtbuf, msgbuf, sizeof(fmtbuf), VIS_SAFE|VIS_OCTAL);
if (log_on_stderr) {
snprintf(fmtbuf, sizeof fmtbuf, "%s\r\n", msgbuf);