aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2005-08-30 16:28:46 +0000
committerAndre Oppermann <andre@FreeBSD.org>2005-08-30 16:28:46 +0000
commit71cb29001b60e143e04e07b69ab811467dfab9d5 (patch)
treec41e3bac7d7179122ed834e4f45a4689e2a927b0 /sys
parente72b668b691d57e71e7697d3a11d603392cc27eb (diff)
downloadsrc-71cb29001b60e143e04e07b69ab811467dfab9d5.tar.gz
src-71cb29001b60e143e04e07b69ab811467dfab9d5.zip
Use the correct mbuf type for MGET().
Notes
Notes: svn path=/head/; revision=149633
Diffstat (limited to 'sys')
-rw-r--r--sys/netatalk/ddp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatalk/ddp_output.c b/sys/netatalk/ddp_output.c
index 749c4c654d9e..357d707f30b0 100644
--- a/sys/netatalk/ddp_output.c
+++ b/sys/netatalk/ddp_output.c
@@ -200,7 +200,7 @@ ddp_route(struct mbuf *m, struct route *ro)
* packets end up poorly aligned due to the three byte elap header.
*/
if (!(aa->aa_flags & AFA_PHASE2)) {
- MGET(m0, M_DONTWAIT, MT_HEADER);
+ MGET(m0, M_DONTWAIT, MT_DATA);
if (m0 == NULL) {
m_freem(m);
printf("ddp_route: no buffers\n");