Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2019 01:44:57 +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: r353078 - stable/11/contrib/ipfilter/tools
Message-ID:  <201910040144.x941ivNH052452@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Fri Oct  4 01:44:56 2019
New Revision: 353078
URL: https://svnweb.freebsd.org/changeset/base/353078

Log:
  MFC r319820:
  
  Identify command line syntax errors in poolflush() (ippool -F).

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 01:43:45 2019	(r353077)
+++ stable/11/contrib/ipfilter/tools/ippool.c	Fri Oct  4 01:44:56 2019	(r353078)
@@ -551,7 +551,13 @@ poolflush(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, "poolflush: opts = %#x\n", opts);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910040144.x941ivNH052452>