make the tzfile header check look for "TZif" instead of "TZif2"

This commit is contained in:
Russell Treleaven 2014-09-05 07:05:20 -04:00
parent 5dfea663cd
commit 9d9feb647a
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ foreach my $name ( sort( keys(%name_to_file) ) ) {
my $data = join( "", <$in> );
close($in);
if ( $data !~ /^TZif2/o ) {
if ( $data !~ /^TZif/o ) {
$debug && print "Skipped $file\n";
next;
}