From 85c3c8b016c16c0b759457201ba2b60315e18236 Mon Sep 17 00:00:00 2001 From: minima Date: Wed, 25 Oct 2000 21:04:23 +0000 Subject: [PATCH] < -> <= :) --- cmd/catchup.pl | 2 +- cmd/uncatchup.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/catchup.pl b/cmd/catchup.pl index e2f43904..20020067 100644 --- a/cmd/catchup.pl +++ b/cmd/catchup.pl @@ -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; } diff --git a/cmd/uncatchup.pl b/cmd/uncatchup.pl index 40461071..fb54f7e2 100644 --- a/cmd/uncatchup.pl +++ b/cmd/uncatchup.pl @@ -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; } -- 2.34.1