diff options
author | Steven Drake <sdrake@ihug.co.nz> | 2008-02-26 13:45:53 +1300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-25 21:56:10 -0800 |
commit | 695ed47228021f7408f58e6174168ea583c448d0 (patch) | |
tree | fe3121b4627159475f64933dfc2145d82599817e /date.c | |
parent | 41e86a377496231709a5fb78df730df7be80b6c9 (diff) | |
download | git-695ed47228021f7408f58e6174168ea583c448d0.tar.gz |
timezone_names[]: fixed the tz offset for New Zealand.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -213,9 +213,9 @@ static const struct { { "EAST", +10, 0, }, /* Eastern Australian Standard */ { "EADT", +10, 1, }, /* Eastern Australian Daylight */ { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */ - { "NZT", +11, 0, }, /* New Zealand */ - { "NZST", +11, 0, }, /* New Zealand Standard */ - { "NZDT", +11, 1, }, /* New Zealand Daylight */ + { "NZT", +12, 0, }, /* New Zealand */ + { "NZST", +12, 0, }, /* New Zealand Standard */ + { "NZDT", +12, 1, }, /* New Zealand Daylight */ { "IDLE", +12, 0, }, /* International Date Line East */ }; |