From b06a75d0798f3ff62d04b3ade52cf34a4ff94613 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 15 Jun 2009 20:26:47 +0000 Subject: Removed superfluous ifdef around strftime (schwarze@openbsd.org). Bumped version (this was supposed to be in 1.7.17). --- mdoc_term.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index ec440962..7cf400f9 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.12 2009/06/12 09:18:00 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.13 2009/06/15 20:26:47 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -415,11 +415,7 @@ print_foot(struct termp *p, const struct mdoc_meta *meta) tm = localtime(&meta->date); -#ifdef __OpenBSD__ - if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm)) -#else if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm)) -#endif err(1, "strftime"); (void)strlcpy(os, meta->os, p->rmargin); -- cgit v1.2.3