Skip to content

Commit

Permalink
remcheck: fix the version number math
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Mar 23, 2023
1 parent eda1650 commit c834778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dl/remcheck.pl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ sub getlastfewversions {
my ($str)=@_;
my @p=split(/\./, $str);

return $p[0]*1000 + $p[1]*100 + $p[2];
return $p[0]*10000 + $p[1]*100 + $p[2];
}

sub sortit {
Expand Down

0 comments on commit c834778

Please sign in to comment.