Don't choke on really big URLs.

This commit is contained in:
terry%netscape.com 1999-04-20 16:19:44 +00:00
Родитель 2c01a9790e
Коммит 88f767cc6f
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -52,6 +52,9 @@ sub Flush {
my $tick = 0;
foreach my $name (keys %counts) {
if ($tick++ % 100 == 0) {
if ($tick <= 1) {
print "\nAdding $date ";
}
print "+";
}
my $id = $ids{$name};
@ -98,6 +101,9 @@ while (<STDIN>) {
my ($day,$month,$year,$hours,$mins,$secs,$name) =
($1, $2, $3, $4, $5, $6, $7);
if (length($name) > 250) {
$name = substr($name, 0, 250);
}
my $date = "$month $day, $year";