svn commit: r248553 - head/sbin/ipfw

Alexander V. Chernikov melifaro at FreeBSD.org
Wed Mar 20 10:36:39 UTC 2013


Author: melifaro
Date: Wed Mar 20 10:36:38 2013
New Revision: 248553
URL: http://svnweb.freebsd.org/changeset/base/248553

Log:
  Remove unused variable.

Modified:
  head/sbin/ipfw/ipfw2.c

Modified: head/sbin/ipfw/ipfw2.c
==============================================================================
--- head/sbin/ipfw/ipfw2.c	Wed Mar 20 10:35:33 2013	(r248552)
+++ head/sbin/ipfw/ipfw2.c	Wed Mar 20 10:36:38 2013	(r248553)
@@ -4122,10 +4122,9 @@ ipfw_table_handler(int ac, char *av[])
 	int do_add;
 	int is_all;
 	size_t len;
-	uint32_t a, mask;
+	uint32_t a;
 	uint32_t tables_max;
 
-	mask = 0;	// XXX uninitialized ?
 	len = sizeof(tables_max);
 	if (sysctlbyname("net.inet.ip.fw.tables_max", &tables_max, &len,
 	    NULL, 0) == -1) {


More information about the svn-src-all mailing list