mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-08-10 08:25:23 +00:00
localtime instead of gmtime
Signed-off-by: Mariano Alvira <mar@devl.org>
This commit is contained in:
@@ -50,7 +50,7 @@ foreach my $file (@files) {
|
||||
|
||||
my $lastupdate = qx(rrdtool lastupdate $meshpath/$addr.rrd);
|
||||
$lastupdate =~ /([\w\d]+)\s+(\d+):\s+([\w\d]+)/;
|
||||
print gmtime($2) . " $1 $3<br>";
|
||||
print localtime($2) . " $1 $3<br>";
|
||||
|
||||
foreach my $ds (keys(%dses)) {
|
||||
print h2("$ds: $aliases{$addr}{'ds'}{$ds}");
|
||||
|
Reference in New Issue
Block a user