svn commit: r353088 - stable/11/contrib/ipfilter/tools
Cy Schubert
cy at FreeBSD.org
Fri Oct 4 02:03:00 UTC 2019
Author: cy
Date: Fri Oct 4 02:02:59 2019
New Revision: 353088
URL: https://svnweb.freebsd.org/changeset/base/353088
Log:
MFC r320221:
poolflush() has no positional arguments.
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:02:12 2019 (r353087)
+++ stable/11/contrib/ipfilter/tools/ippool.c Fri Oct 4 02:02:59 2019 (r353088)
@@ -577,7 +577,7 @@ poolflush(argc, argv)
break; /* keep compiler happy */
}
- if (argc - 1 - optind > 0)
+ if (argc - optind > 0)
usage(argv[0]);
if (opts & OPT_DEBUG)
More information about the svn-src-stable-11
mailing list