Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Feb 2012 10:20:13 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r232171 - stable/9/sys/netinet/ipfw
Message-ID:  <201202261020.q1QAKDpn058909@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Sun Feb 26 10:20:13 2012
New Revision: 232171
URL: http://svn.freebsd.org/changeset/base/232171

Log:
  MFC r231991:
    Don't use `m' after m_megapullup.
  
    PR:		kern/165373

Modified:
  stable/9/sys/netinet/ipfw/ip_fw_nat.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/ipfw/ip_fw_nat.c
==============================================================================
--- stable/9/sys/netinet/ipfw/ip_fw_nat.c	Sun Feb 26 06:04:44 2012	(r232170)
+++ stable/9/sys/netinet/ipfw/ip_fw_nat.c	Sun Feb 26 10:20:13 2012	(r232171)
@@ -315,7 +315,7 @@ ipfw_nat(struct ip_fw_args *args, struct
 	}
 
 	if (retval == PKT_ALIAS_RESPOND)
-		m->m_flags |= M_SKIP_FIREWALL;
+		mcl->m_flags |= M_SKIP_FIREWALL;
 	mcl->m_pkthdr.len = mcl->m_len = ntohs(ip->ip_len);
 
 	/*



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