Module Name:    src
Committed By:   christos
Date:           Sun Oct 18 22:57:05 UTC 2009

Modified Files:
        src/sys/netinet6: icmp6.c

Log Message:
fix the sun2 case for real.


To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/sys/netinet6/icmp6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/icmp6.c
diff -u src/sys/netinet6/icmp6.c:1.154 src/sys/netinet6/icmp6.c:1.155
--- src/sys/netinet6/icmp6.c:1.154	Mon Oct 12 18:32:23 2009
+++ src/sys/netinet6/icmp6.c	Sun Oct 18 18:57:05 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: icmp6.c,v 1.154 2009/10/12 22:32:23 christos Exp $	*/
+/*	$NetBSD: icmp6.c,v 1.155 2009/10/18 22:57:05 christos Exp $	*/
 /*	$KAME: icmp6.c,v 1.217 2001/06/20 15:03:29 jinmei Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: icmp6.c,v 1.154 2009/10/12 22:32:23 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: icmp6.c,v 1.155 2009/10/18 22:57:05 christos Exp $");
 
 #include "opt_inet.h"
 #include "opt_ipsec.h"
@@ -2383,7 +2383,7 @@
 	MGETHDR(m, M_DONTWAIT, MT_HEADER);
 	if (m && IPV6_MMTU >= MHLEN) {
 #if IPV6_MMTU >= MCLBYTES
-		_MCLGET(m, &mclpool_cache, IPV6_MMTU, M_DONTWAIT);
+		_MCLGET(m, mcl_cache, IPV6_MMTU, M_DONTWAIT);
 #else
 		MCLGET(m, M_DONTWAIT);
 #endif

Reply via email to