Author: jkeenan
Date: Fri Jan 25 17:05:30 2008
New Revision: 25229

Modified:
   trunk/tools/util/smokeserv-server.pl

Log:
Change localtime to gmtime in one location.  Cf:  
http://rt.perl.org/rt3/Ticket/Display.html?id=45307.

Modified: trunk/tools/util/smokeserv-server.pl
==============================================================================
--- trunk/tools/util/smokeserv-server.pl        (original)
+++ trunk/tools/util/smokeserv-server.pl        Fri Jan 25 17:05:30 2008
@@ -283,7 +283,7 @@
         timestamp => [
             $9,
             do {
-                my $str = localtime($9)->strftime("%d %b %Y %H:%M %a");
+                my $str = gmtime($9)->strftime("%d %b %Y %H:%M %a");
                 $str =~ s/ / /g;
 
                 # hack, to make the timestamps not break so the 

Reply via email to