Date: Fri, 4 Oct 2019 02:01:24 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r353086 - stable/11/contrib/ipfilter/tools Message-ID: <201910040201.x9421O4N061644@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Fri Oct 4 02:01:23 2019 New Revision: 353086 URL: https://svnweb.freebsd.org/changeset/base/353086 Log: MFC r320143: Flag poolnodecommand() (ippool -a and ippool -r) command line syntax errors. Modified: stable/11/contrib/ipfilter/tools/ippool.c Directory Properties: stable/11/ (props changed) Modified: stable/11/contrib/ipfilter/tools/ippool.c ============================================================================== --- stable/11/contrib/ipfilter/tools/ippool.c Fri Oct 4 02:00:15 2019 (r353085) +++ stable/11/contrib/ipfilter/tools/ippool.c Fri Oct 4 02:01:23 2019 (r353086) @@ -204,7 +204,13 @@ poolnodecommand(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 (argv[optind] != NULL && ipset == 0) { if (setnodeaddr(type, role, ptr, argv[optind]) == 0)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910040201.x9421O4N061644>