X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fcatchup.pl;h=81bf0539370d68384d332979308cd93290786838;hb=741d603d871147fe3a9d047e27cdae30a03492c1;hp=e2f439040921652d9198cf7f719a93e51c55a7cf;hpb=e5581689d790a1afd6ba0d83dc3bc36fc0e0f885;p=spider.git diff --git a/cmd/catchup.pl b/cmd/catchup.pl index e2f43904..81bf0539 100644 --- a/cmd/catchup.pl +++ b/cmd/catchup.pl @@ -4,7 +4,7 @@ # in other words mark all messages as being already received # by this node. # -# $Id$ +# # # Copyright (c) 1999 Dirk Koopman G1TLH # @@ -29,7 +29,7 @@ foreach my $msgno (@f) { @ref = DXMsg::get_all(); last; } elsif (my ($f, $t) = $msgno =~ /(\d+)-(\d+)/) { - while ($f < $t) { + while ($f <= $t) { $ref = DXMsg::get($f++); push @ref, $ref if $ref; }