diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-19 18:55:52 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-19 18:56:01 -0400 |
commit | bc59c1236fb6db77b5c4426be3bb5b1a934ae2a7 (patch) | |
tree | d18f4167695c8b58b834a916b50b58b373bb7bc1 /src/timezone/localtime.c | |
parent | 9cfe353c51a8c077802c9d3ef5b4e2eb493bf46c (diff) |
Sync our copy of the timezone library with IANA release tzcode2016g.
This is mostly to absorb some corner-case fixes in zic for year-2037
timestamps. The other changes that have been made are unlikely to affect
our usage, but nonetheless we may as well take 'em.
Diffstat (limited to 'src/timezone/localtime.c')
-rw-r--r-- | src/timezone/localtime.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/timezone/localtime.c b/src/timezone/localtime.c index a14215d6bde..ae9c2d23e63 100644 --- a/src/timezone/localtime.c +++ b/src/timezone/localtime.c @@ -1280,9 +1280,8 @@ gmtsub(pg_time_t const * timep, int32 offset, struct pg_tm * tmp) result = timesub(timep, offset, gmtptr, tmp); /* - * Could get fancy here and deliver something such as "UT+xxxx" or - * "UT-xxxx" if offset is non-zero, but this is no time for a treasure - * hunt. + * Could get fancy here and deliver something such as "+xx" or "-xx" if + * offset is non-zero, but this is no time for a treasure hunt. */ if (offset != 0) tmp->tm_zone = wildabbr; |