Subject: | dates misinterpreted after 2020 |
similar to https://rt.cpan.org/Public/Bug/Display.html?id=124508
after 2020-01-01 tests were failing because year 70 was now interpreted as 2070
The trivial fix is to apply to
Parse-Win32Registry-1.0/lib/Parse/Win32Registry/Base.pm
and
Parse-Win32Registry-1.0/t/misc.t
- my $epoch_offset = timegm(0, 0, 0, 1, 0, 70);
+ my $epoch_offset = timegm(0, 0, 0, 1, 0, 1970);