Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/include Sync with 2019b (field name change)



details:   https://anonhg.NetBSD.org/src/rev/81c039cbfed0
branches:  trunk
changeset: 457559:81c039cbfed0
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Jul 03 15:49:21 2019 +0000

description:
Sync with 2019b (field name change)

diffstat:

 include/tzfile.h |  19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diffs (41 lines):

diff -r c345192d8a0e -r 81c039cbfed0 include/tzfile.h
--- a/include/tzfile.h  Wed Jul 03 13:31:57 2019 +0000
+++ b/include/tzfile.h  Wed Jul 03 15:49:21 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tzfile.h,v 1.9 2019/04/04 18:18:52 christos Exp $      */
+/*     $NetBSD: tzfile.h,v 1.10 2019/07/03 15:49:21 christos Exp $     */
 
 #ifndef _TZFILE_H_
 #define _TZFILE_H_
@@ -45,7 +45,7 @@
        char    tzh_magic[4];           /* TZ_MAGIC */
        char    tzh_version[1];         /* '\0' or '2' or '3' as of 2013 */
        char    tzh_reserved[15];       /* reserved; must be zero */
-       char    tzh_ttisgmtcnt[4];      /* coded number of trans. time flags */
+       char    tzh_ttisutcnt[4];       /* coded number of trans. time flags */
        char    tzh_ttisstdcnt[4];      /* coded number of trans. time flags */
        char    tzh_leapcnt[4];         /* coded number of leap seconds */
        char    tzh_timecnt[4];         /* coded number of transition times */
@@ -68,14 +68,15 @@
 **             one (char [4])          total correction after above
 **     tzh_ttisstdcnt (char)s          indexed by type; if 1, transition
 **                                     time is standard time, if 0,
-**                                     transition time is wall clock time
-**                                     if absent, transition times are
-**                                     assumed to be wall clock time
-**     tzh_ttisgmtcnt (char)s          indexed by type; if 1, transition
-**                                     time is UT, if 0,
-**                                     transition time is local time
-**                                     if absent, transition times are
+**                                     transition time is local (wall clock)
+**                                     time; if absent, transition times are
 **                                     assumed to be local time
+**     tzh_ttisutcnt (char)s           indexed by type; if 1, transition
+**                                     time is UT, if 0, transition time is
+**                                     local time; if absent, transition
+**                                     times are assumed to be local time.
+**                                     When this is 1, the corresponding
+**                                     std/wall indicator must also be 1.
 */
 
 /*



Home | Main Index | Thread Index | Old Index