Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Feb 2012 04:19:33 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r231991 - head/sys/netinet/ipfw
Message-ID:  <201202220419.q1M4JX9Q034134@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Wed Feb 22 04:19:33 2012
New Revision: 231991
URL: http://svn.freebsd.org/changeset/base/231991

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

Modified:
  head/sys/netinet/ipfw/ip_fw_nat.c

Modified: head/sys/netinet/ipfw/ip_fw_nat.c
==============================================================================
--- head/sys/netinet/ipfw/ip_fw_nat.c	Wed Feb 22 03:36:15 2012	(r231990)
+++ head/sys/netinet/ipfw/ip_fw_nat.c	Wed Feb 22 04:19:33 2012	(r231991)
@@ -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?201202220419.q1M4JX9Q034134>