Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Oct 2014 15:04:50 +0000 (UTC)
From:      "Alexander V. Chernikov" <melifaro@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r272940 - head/sys/netpfil/ipfw
Message-ID:  <201410111504.s9BF4oOH015607@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: melifaro
Date: Sat Oct 11 15:04:50 2014
New Revision: 272940
URL: https://svnweb.freebsd.org/changeset/base/272940

Log:
  Fix KASSERT typo.

Modified:
  head/sys/netpfil/ipfw/ip_fw_table_value.c   (contents, props changed)

Modified: head/sys/netpfil/ipfw/ip_fw_table_value.c
==============================================================================
--- head/sys/netpfil/ipfw/ip_fw_table_value.c	Sat Oct 11 12:56:49 2014	(r272939)
+++ head/sys/netpfil/ipfw/ip_fw_table_value.c	Sat Oct 11 15:04:50 2014	(r272940)
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c 270407 2014-08-23 12:41:39Z melifaro $");
+__FBSDID("$FreeBSD$");
 
 /*
  * Multi-field value support for ipfw tables.
@@ -557,7 +557,7 @@ ipfw_link_table_values(struct ip_fw_chai
 		return (0);
 	}
 
-	KASSERT(pval == ch->tablestate, ("resize_storage() notify failure"));
+	KASSERT(pval == ch->valuestate, ("resize_storage() notify failure"));
 
 	/* Let's try to link values */
 	for (i = 0; i < count; i++) {



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