X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FUSDB.pm;fp=perl%2FUSDB.pm;h=c12247a34503b2ce47e3d93dc0251e669726dda9;hb=c0061eedd6e656543667cf2d204340975eea1ecc;hp=3ee18825d04b89754a8d2c1a8559f3768fe58857;hpb=1ddd21105b4fdf68756a8676a58105927254d386;p=spider.git diff --git a/perl/USDB.pm b/perl/USDB.pm index 3ee18825..c12247a3 100644 --- a/perl/USDB.pm +++ b/perl/USDB.pm @@ -105,16 +105,18 @@ sub load my $fn = shift; my $if = gzopen($fn, "r") or return "Cannot open $fn $!"; my $ofn = "$fn.upk"; - my $of = new IO::File "+>$ofn" or return "Cannot open $ofn $!"; + my $of = new IO::File "+>$ofn" or return "Cannot read $ofn $!"; my ($l, $buf); while ($l = $if->gzread($buf)) { $of->write($buf, $l); } $if->gzclose; - $of->seek(0, 0); + $of->close; + $of = new IO::File "$ofn" or return "Cannot read $ofn $!"; - while ($of->getline()) { - chomp $l; + while (<$of>) { + $l = $_; + $l =~ s/[\r\n]+$//; my ($call, $city, $state) = split /\|/, $l; # lookup the city