diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-15 08:20:43 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-15 08:20:43 +0000 |
commit | 2761166b74de8c3bd61bb7bafb4617e9a946462c (patch) | |
tree | 77fab77e019a0accfb2efb452f63349d4ac408a0 | |
parent | a6a3c5fe418c18611afdc37e22c1bcf37c39d246 (diff) | |
download | mandoc-2761166b74de8c3bd61bb7bafb4617e9a946462c.tar.gz |
Fix to presentation date (Ulrich Sporlein)
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index cb13f110..1f45bb8e 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -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); |