svn commit: r320120 - head/contrib/ipfilter/tools

Cy Schubert cy at FreeBSD.org
Mon Jun 19 19:27:39 UTC 2017


Author: cy
Date: Mon Jun 19 19:27:37 2017
New Revision: 320120
URL: https://svnweb.freebsd.org/changeset/base/320120

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

Modified:
  head/contrib/ipfilter/tools/ippool.c

Modified: head/contrib/ipfilter/tools/ippool.c
==============================================================================
--- head/contrib/ipfilter/tools/ippool.c	Mon Jun 19 18:08:20 2017	(r320119)
+++ head/contrib/ipfilter/tools/ippool.c	Mon Jun 19 19:27:37 2017	(r320120)
@@ -268,7 +268,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' :


More information about the svn-src-all mailing list