X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Funcatchup.pl;h=8a6d736a3696720b5843dc5ce8fec8cbae1c621a;hb=7d604d6c1d81a494a811afb3f93f8dc02eb59e2d;hp=4046107141c2e6a6e225eb9be7f0fbb341972d7e;hpb=e5581689d790a1afd6ba0d83dc3bc36fc0e0f885;p=spider.git diff --git a/cmd/uncatchup.pl b/cmd/uncatchup.pl index 40461071..8a6d736a 100644 --- a/cmd/uncatchup.pl +++ b/cmd/uncatchup.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; }