From 62e097ec8eaf4a9919849a5dee21154a3e3f55a7 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 21 Oct 2009 03:31:49 +0000 Subject: Fixed strftime stray %d -> %e (pointed out by Ulrich Sporlein). --- man_term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man_term.c b/man_term.c index 11d15c3c..188c9f1c 100644 --- a/man_term.c +++ b/man_term.c @@ -914,7 +914,7 @@ print_foot(struct termp *p, const struct man_meta *meta) tm = localtime(&meta->date); - if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm)) + if (0 == strftime(buf, p->rmargin, "%B %e, %Y", tm)) (void)strlcpy(buf, "(invalid date)", BUFSIZ); term_vspace(p); -- cgit