Remove artificial limit for -i.

Obtained from:	CheriBSD
MFC after:	2 weeks
Sponsored by:	DARPA, AFRL
This commit is contained in:
trasz 2017-11-02 12:16:50 +00:00
parent a396801790
commit 8ec59b6c55

View File

@ -808,7 +808,7 @@ main(int argc, char *argv[])
switch (ch) {
case 'i':
ll = strtol(optarg, &endp, 10);
if (*endp != 0 || ll < 1 || ll > 100000)
if (*endp != 0 || ll < 1)
usage();
iterations = ll;
break;