Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/lib/libc/time Pull up following revision(s) (requested by...
details: https://anonhg.NetBSD.org/src/rev/3b343f66d5af
branches: netbsd-7
changeset: 799835:3b343f66d5af
user: martin <martin%NetBSD.org@localhost>
date: Sun Mar 06 18:01:48 2016 +0000
description:
Pull up following revision(s) (requested by christos in ticket #1121):
lib/libc/time/localtime.c: revision 1.101
PR/50133: Martin Husemann: Can't cache $TZ.
XXX: Pullup-7
diffstat:
lib/libc/time/localtime.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r ed70671e6d53 -r 3b343f66d5af lib/libc/time/localtime.c
--- a/lib/libc/time/localtime.c Sun Mar 06 18:00:07 2016 +0000
+++ b/lib/libc/time/localtime.c Sun Mar 06 18:01:48 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: localtime.c,v 1.82.2.1 2015/01/25 09:11:03 martin Exp $ */
+/* $NetBSD: localtime.c,v 1.82.2.2 2016/03/06 18:01:48 martin Exp $ */
/*
** This file is in the public domain, so clarified as of
@@ -10,7 +10,7 @@
#if 0
static char elsieid[] = "@(#)localtime.c 8.17";
#else
-__RCSID("$NetBSD: localtime.c,v 1.82.2.1 2015/01/25 09:11:03 martin Exp $");
+__RCSID("$NetBSD: localtime.c,v 1.82.2.2 2016/03/06 18:01:48 martin Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -1476,7 +1476,7 @@
struct tm *
localtime_r(const time_t * __restrict timep, struct tm *tmp)
{
- return localtime_tzset(timep, tmp, false);
+ return localtime_tzset(timep, tmp, true);
}
/*
Home |
Main Index |
Thread Index |
Old Index