aboutsummaryrefslogtreecommitdiff
path: root/src/timezone/localtime.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-10-19 18:55:52 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-10-19 18:55:52 -0400
commitf3094920a567cde6c86adf36a1a033d7431b11ff (patch)
tree8eade1521df56733d693a8e890bd521166f5c766 /src/timezone/localtime.c
parenta3215431ab7c667bf581728f10c80a36abbe1d5a (diff)
downloadpostgresql-f3094920a567cde6c86adf36a1a033d7431b11ff.tar.gz
postgresql-f3094920a567cde6c86adf36a1a033d7431b11ff.zip
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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/timezone/localtime.c b/src/timezone/localtime.c
index d004e5ebe2b..e6c1beaf96a 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;