svn commit: r353074 - stable/11/contrib/ipfilter/tools
Cy Schubert
cy at FreeBSD.org
Fri Oct 4 01:38:57 UTC 2019
Author: cy
Date: Fri Oct 4 01:38:56 2019
New Revision: 353074
URL: https://svnweb.freebsd.org/changeset/base/353074
Log:
MFC r319273:
Remove NORESOLVE (-R) option from poollist() (ippool -l). It is not
used in poollist().
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 00:04:21 2019 (r353073)
+++ stable/11/contrib/ipfilter/tools/ippool.c Fri Oct 4 01:38:56 2019 (r353074)
@@ -657,7 +657,7 @@ poollist(argc, argv)
poolname = NULL;
role = IPL_LOGALL;
- while ((c = getopt(argc, argv, "dm:M:N:o:Rt:v")) != -1)
+ while ((c = getopt(argc, argv, "dm:M:N:o:t:v")) != -1)
switch (c)
{
case 'd' :
@@ -683,9 +683,6 @@ poollist(argc, argv)
break;
case 'O' :
pool_fields = parsefields(poolfields, optarg);
- break;
- case 'R' :
- opts |= OPT_NORESOLVE;
break;
case 't' :
type = gettype(optarg, NULL);
More information about the svn-src-stable-11
mailing list