From cb76300c6c9cb26cc4ada9723dd94689392a97c0 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Sat, 30 Dec 1995 08:16:41 +0000 Subject: [PATCH] from netbsd: Fixed %u to expand to a single digit --- src/lib/libc/string/strftime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/libc/string/strftime.c b/src/lib/libc/string/strftime.c index fffa9ecb..b696a60e 100644 --- a/src/lib/libc/string/strftime.c +++ b/src/lib/libc/string/strftime.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)strftime.c 5.11 (Berkeley) 2/24/91";*/ -static char *rcsid = "$Id: strftime.c,v 1.1.1.1 1995/10/18 08:42:22 deraadt Exp $"; +static char *rcsid = "$Id: strftime.c,v 1.2 1995/12/30 08:16:41 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -202,7 +202,7 @@ _fmt(format, t) return(0); continue; case 'u': - if (!_conv(t->tm_wday ? t->tm_wday : 7, 2, '0')) + if (!_conv(t->tm_wday ? t->tm_wday : 7, 1, '0')) return(0); continue; case 'V':