Hello,

Can someone confirm that the timelocal module is having problems in ActiveState perl, v5.8.6 built for MSWin32-x86-multi-thread, build 811? The test script is below. There seem to be a lot of error messages.

#!/usr/bin/perl -w

use Time::Local qw(timelocal);

use strict;

my $year   = "105";
my $month  =   "01";
my $day    =   "06";
my $hour   =   "13";
my $minute =     "38";
my $second = "48";

my $epoch_seconds = timelocal($second, $minute, $hour, $day, $month, $year);
print ("epoch_seconds is $epoch_seconds\n");



Reply via email to