X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fdbimport.pl;h=797805eaee2d7513246b81d88b303ad4430c94a0;hb=refs%2Fheads%2Fnewpc92timings;hp=55d5e6322c00c4975e7387f90f2ca02e89781049;hpb=9e2fbafcfdab1ee45e581524311f1a97ac41f6ad;p=spider.git diff --git a/cmd/dbimport.pl b/cmd/dbimport.pl index 55d5e632..797805ea 100644 --- a/cmd/dbimport.pl +++ b/cmd/dbimport.pl @@ -31,14 +31,18 @@ while () { } $key = uc $_; $value = undef; - ++$state; + ++$state if $key; } elsif ($state == 1) { if (/^\&\&/) { if ($key =~ /^#/) { + } elsif ($key && $value) { + $db->putkey($key, $value); + $count++; } - $db->putkey($key, $value); $state = 0; - $count++; + next; + } elsif (/^\%\%/) { + $state = 0; next; } $value .= $_ . "\n";