Add UTC timezone to Linux.
authorMatt Lewandowsky <matt@greenviolet.net>
Wed, 28 Sep 2011 15:26:23 +0000 (15:26 +0000)
committerMatt Lewandowsky <matt@greenviolet.net>
Wed, 28 Sep 2011 15:26:23 +0000 (15:26 +0000)
time/linux-lib.pl

index 41f0ca3..1bf78ca 100755 (executable)
@@ -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;
 }