From owner-svn-src-all@FreeBSD.ORG Sat Oct 11 15:04:51 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1499977C; Sat, 11 Oct 2014 15:04:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 001DD164; Sat, 11 Oct 2014 15:04:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BF4oqO015608; Sat, 11 Oct 2014 15:04:50 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BF4oOH015607; Sat, 11 Oct 2014 15:04:50 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201410111504.s9BF4oOH015607@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sat, 11 Oct 2014 15:04:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r272940 - head/sys/netpfil/ipfw X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 15:04:51 -0000 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 -__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++) {