Module Name: src Committed By: christos Date: Fri Oct 30 18:20:16 UTC 2015
Modified Files: src/lib/libc/time: strptime.c Log Message: drop stray #endif To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/lib/libc/time/strptime.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/time/strptime.c diff -u src/lib/libc/time/strptime.c:1.54 src/lib/libc/time/strptime.c:1.55 --- src/lib/libc/time/strptime.c:1.54 Fri Oct 30 14:04:42 2015 +++ src/lib/libc/time/strptime.c Fri Oct 30 14:20:16 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: strptime.c,v 1.54 2015/10/30 18:04:42 christos Exp $ */ +/* $NetBSD: strptime.c,v 1.55 2015/10/30 18:20:16 christos Exp $ */ /*- * Copyright (c) 1997, 1998, 2005, 2008 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: strptime.c,v 1.54 2015/10/30 18:04:42 christos Exp $"); +__RCSID("$NetBSD: strptime.c,v 1.55 2015/10/30 18:20:16 christos Exp $"); #endif #include "namespace.h" @@ -469,7 +469,6 @@ literal: #ifdef TM_GMTOFF tm->TM_GMTOFF = -timezone; #endif -#endif #ifdef TM_ZONE tm->TM_ZONE = tzname[i]; bp = ep;