diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-25 23:29:16 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-25 23:29:16 +0000 |
commit | df1235ece616bd20dabf615ae2b7108a39d4c6e9 (patch) | |
tree | 7a92a00c74bd257bfcee4adc1a4ce98eeb165f42 /usr.bin/mandoc | |
parent | 3ddee4aec14de13952108686e37d4e9b5464a9e3 (diff) |
sync to 1.8.1: fix date in footer; from Ulrich Sporlein
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/mdoc_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_term.c b/usr.bin/mandoc/mdoc_term.c index f6a51953344..863edae8585 100644 --- a/usr.bin/mandoc/mdoc_term.c +++ b/usr.bin/mandoc/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.35 2009/07/18 22:07:09 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.36 2009/07/25 23:29:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -403,7 +403,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); |