Skip to content

Commit 695ed47

Browse files
Steven Drakegitster
authored andcommitted
timezone_names[]: fixed the tz offset for New Zealand.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 41e86a3 commit 695ed47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

date.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ static const struct {
213213
{ "EAST", +10, 0, }, /* Eastern Australian Standard */
214214
{ "EADT", +10, 1, }, /* Eastern Australian Daylight */
215215
{ "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
216-
{ "NZT", +11, 0, }, /* New Zealand */
217-
{ "NZST", +11, 0, }, /* New Zealand Standard */
218-
{ "NZDT", +11, 1, }, /* New Zealand Daylight */
216+
{ "NZT", +12, 0, }, /* New Zealand */
217+
{ "NZST", +12, 0, }, /* New Zealand Standard */
218+
{ "NZDT", +12, 1, }, /* New Zealand Daylight */
219219
{ "IDLE", +12, 0, }, /* International Date Line East */
220220
};
221221

0 commit comments

Comments
 (0)