Merge pull request #40 in FS/freeswitch from ~RTRELEAVEN/freeswitch-fs-4762:fs-4762 to master

* commit '9d9feb647a219af467514116824d80ca608fbf4c':
  make the tzfile header check look for "TZif" instead of "TZif2"
This commit is contained in:
William King 2014-09-05 13:18:34 -05:00
commit 794f09bba0
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;
}