Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2019 02:00:16 +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: r353085 - stable/11/contrib/ipfilter/tools
Message-ID:  <201910040200.x9420Gn4058989@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Fri Oct  4 02:00:15 2019
New Revision: 353085
URL: https://svnweb.freebsd.org/changeset/base/353085

Log:
  MFC r320120:
  
  poolcommand() (ippool -A and ippool -R) seed takes an argument.

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:59:25 2019	(r353084)
+++ stable/11/contrib/ipfilter/tools/ippool.c	Fri Oct  4 02:00:15 2019	(r353085)
@@ -262,7 +262,7 @@ poolcommand(remove, argc, argv)
 	bzero((char *)&iph, sizeof(iph));
 	bzero((char *)&pool, sizeof(pool));
 
-	while ((c = getopt(argc, argv, "dm:no:RSv")) != -1)
+	while ((c = getopt(argc, argv, "dm:no:RS:v")) != -1)
 		switch (c)
 		{
 		case 'd' :



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