svn commit: r319273 - head/contrib/ipfilter/tools
Cy Schubert
cy at FreeBSD.org
Wed May 31 03:11:26 UTC 2017
Author: cy
Date: Wed May 31 03:11:25 2017
New Revision: 319273
URL: https://svnweb.freebsd.org/changeset/base/319273
Log:
Remove NORESOLVE (-R) option from poollist() (ippool -l). It is not
used in poollist().
Modified:
head/contrib/ipfilter/tools/ippool.c
Modified: head/contrib/ipfilter/tools/ippool.c
==============================================================================
--- head/contrib/ipfilter/tools/ippool.c Wed May 31 00:43:52 2017 (r319272)
+++ head/contrib/ipfilter/tools/ippool.c Wed May 31 03:11:25 2017 (r319273)
@@ -663,7 +663,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' :
@@ -689,9 +689,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-head
mailing list