diff options
author | andre <andre@FreeBSD.org> | 2005-08-30 16:35:27 +0000 |
---|---|---|
committer | andre <andre@FreeBSD.org> | 2005-08-30 16:35:27 +0000 |
commit | 02715a1de8ff9b7eb30ac50221e7a9c2a8e4edd4 (patch) | |
tree | 7e741eec720f0000f053dbdc1332204ccc4e8cdd /sys/netinet6 | |
parent | f7ffe965a12c9d30f9d3ae5a131fac85b9c4f0c5 (diff) | |
download | FreeBSD-src-02715a1de8ff9b7eb30ac50221e7a9c2a8e4edd4.zip FreeBSD-src-02715a1de8ff9b7eb30ac50221e7a9c2a8e4edd4.tar.gz |
Use the correct mbuf type for MGET().
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index f207307..39ea602 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1814,7 +1814,7 @@ do { \ break; } /* XXX */ - MGET(m, sopt->sopt_td ? M_WAIT : M_DONTWAIT, MT_HEADER); + MGET(m, sopt->sopt_td ? M_WAIT : M_DONTWAIT, MT_DATA); if (m == 0) { error = ENOBUFS; break; |