Commit 8ae4f160 authored by Geoff Simmons's avatar Geoff Simmons

remove the range check for the -L CLI option (VSL_Arg does it now)

parent 1190595a
......@@ -688,11 +688,6 @@ main(int argc, char *argv[])
fprintf(stderr, "%s\n", VSL_Error(vsl));
usage(EXIT_FAILURE);
}
/* XXX: VSL_Arg doesn't check this */
if (c == 'L' && atoi(optarg) == 0) {
fprintf(stderr, "-L: Range error\n");
usage(EXIT_FAILURE);
}
AN(errnum);
break;
case 'h':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment