Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 08:09:45 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244386 - head/sys/netinet
Message-ID:  <201212180809.qBI89jUi091821@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glebius
Date: Tue Dec 18 08:09:44 2012
New Revision: 244386
URL: http://svnweb.freebsd.org/changeset/base/244386

Log:
  Clear correct flag in INET6 case.

Modified:
  head/sys/netinet/tcp_input.c

Modified: head/sys/netinet/tcp_input.c
==============================================================================
--- head/sys/netinet/tcp_input.c	Tue Dec 18 07:36:45 2012	(r244385)
+++ head/sys/netinet/tcp_input.c	Tue Dec 18 08:09:44 2012	(r244386)
@@ -810,7 +810,7 @@ findpcb:
 		}
 		/* Remove the tag from the packet.  We don't need it anymore. */
 		m_tag_delete(m, fwd_tag);
-		m->m_flags &= ~M_IP_NEXTHOP;
+		m->m_flags &= ~M_IP6_NEXTHOP;
 		fwd_tag = NULL;
 	} else if (isipv6) {
 		inp = in6_pcblookup_mbuf(&V_tcbinfo, &ip6->ip6_src,



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