From 15ddb9f9c64f4856c947a89a9f09d51fafc694f6 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sat, 27 Jul 1996 00:58:42 +0000 Subject: (fmt_past_time): Always use WIDTH+1 as strftime's limit. --- libshouldbeinlibc/timefmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libshouldbeinlibc') diff --git a/libshouldbeinlibc/timefmt.c b/libshouldbeinlibc/timefmt.c index 21c5c79c..da4ccde0 100644 --- a/libshouldbeinlibc/timefmt.c +++ b/libshouldbeinlibc/timefmt.c @@ -339,7 +339,7 @@ fmt_past_time (struct timeval *tv, struct timeval *now, end = stpcpy (end, *sep); end = stpcpy (end, *fmt); - used = strftime (buf, width, whole_fmt, &tm); + used = strftime (buf, width + 1, whole_fmt, &tm); } if (! used) -- cgit v1.2.3