svn commit: r244360 - head/sys/netinet6
Andrey V. Elsukov
ae at FreeBSD.org
Mon Dec 17 14:36:57 UTC 2012
Author: ae
Date: Mon Dec 17 14:36:56 2012
New Revision: 244360
URL: http://svnweb.freebsd.org/changeset/base/244360
Log:
Use M_PROTO7 flag for M_IP6_NEXTHOP, because M_PROTO2 was used for
M_AUTHIPHDR.
Pointy hat to: ae
Reported by: Vadim Goncharov
MFC after: 3 days
Modified:
head/sys/netinet6/ip6_var.h
Modified: head/sys/netinet6/ip6_var.h
==============================================================================
--- head/sys/netinet6/ip6_var.h Mon Dec 17 13:03:13 2012 (r244359)
+++ head/sys/netinet6/ip6_var.h Mon Dec 17 14:36:56 2012 (r244360)
@@ -285,7 +285,7 @@ struct ip6aux {
#define IPV6_FORWARDING 0x02 /* most of IPv6 header exists */
#define IPV6_MINMTU 0x04 /* use minimum MTU (IPV6_USE_MIN_MTU) */
-#define M_IP6_NEXTHOP M_PROTO2 /* explicit ip nexthop */
+#define M_IP6_NEXTHOP M_PROTO7 /* explicit ip nexthop */
#ifdef __NO_STRICT_ALIGNMENT
#define IP6_HDR_ALIGNED_P(ip) 1
More information about the svn-src-head
mailing list