From 3a4080bf6068a5a3f8ef9bb511bae8cd23063db2 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 15 Jul 2009 08:20:43 +0000 Subject: Fix to presentation date (Ulrich Sporlein) --- mdoc_term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 12bea391..8381174b 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.41 2009/07/14 16:03:51 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.42 2009/07/15 08:20:43 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -407,7 +407,7 @@ print_foot(struct termp *p, const struct mdoc_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)) err(1, "strftime"); (void)strlcpy(os, meta->os, p->rmargin); -- cgit v1.2.3