Flag poolcommand() (ippool -A and ippool -R) command line syntax errors.

This commit is contained in:
Cy Schubert 2017-06-19 12:33:22 +00:00
parent df9abd97ac
commit eeafb4bc10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320095

View File

@ -297,8 +297,14 @@ poolcommand(remove, argc, argv)
case 'v' :
opts |= OPT_VERBOSE;
break;
default :
usage(argv[0]);
break; /* keep compiler happy */
}
if (argc - 1 - optind > 0)
usage(argv[0]);
if (opts & OPT_DEBUG)
fprintf(stderr, "poolcommand: opts = %#x\n", opts);