From 1e29e77683c3ed1314184cdcfa91e9a6513a0e98 Mon Sep 17 00:00:00 2001 From: tedu Date: Wed, 17 Aug 2016 22:15:08 +0000 Subject: % is escaped with more %, not backslash. --- lib/libc/stdio/vfprintf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/stdio/vfprintf.c') diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 9865c1e4c72..1b497515500 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.74 2016/08/17 18:07:07 deraadt Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.75 2016/08/17 22:15:08 tedu Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -862,7 +862,7 @@ fp_common: int save_errno = errno; syslog_r(LOG_CRIT | LOG_CONS, &sdata, - "vfprintf \%ls NULL in \"%s\"", fmt0); + "vfprintf %%ls NULL in \"%s\"", fmt0); errno = save_errno; cp = "(null)"; @@ -881,7 +881,7 @@ fp_common: int save_errno = errno; syslog_r(LOG_CRIT | LOG_CONS, &sdata, - "vfprintf \%s NULL in \"%s\"", fmt0); + "vfprintf %%s NULL in \"%s\"", fmt0); errno = save_errno; cp = "(null)"; -- cgit v1.2.3-59-g8ed1b