Add UTC timezone to Linux.

This commit is contained in:
Matt Lewandowsky
2011-09-28 15:26:23 +00:00
parent 5fdad592ca
commit 0e751d7f77

View File

@ -26,6 +26,7 @@ while(<ZONE>) {
}
close(ZONE);
push(@rv, [ "GMT", "GMT" ]) if (!$done{'GMT'});
push(@rv, [ "UTC", "UTC" ]) if (!$done{'UTC'});
return sort { $a->[0] cmp $b->[0] } @rv;
}