diff options
| author | Andre Oppermann <andre@FreeBSD.org> | 2005-11-02 13:46:32 +0000 |
|---|---|---|
| committer | Andre Oppermann <andre@FreeBSD.org> | 2005-11-02 13:46:32 +0000 |
| commit | 34333b16cdbff9a44599686b809052878716f44e (patch) | |
| tree | 7cfb57b5672b497ffd3064153c31cb0a738e8f19 /sys/netinet/tcp_output.c | |
| parent | 4f8d68d6ca398698292eb46247d530365ed59b86 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_output.c')
| -rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 6bfaa413def6..e377bdf95e47 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -747,7 +747,7 @@ send: m->m_len += hdrlen; m->m_data -= hdrlen; #else - MGETHDR(m, M_DONTWAIT, MT_HEADER); + MGETHDR(m, M_DONTWAIT, MT_DATA); if (m == NULL) { SOCKBUF_UNLOCK(&so->so_snd); error = ENOBUFS; @@ -800,7 +800,7 @@ send: else tcpstat.tcps_sndwinup++; - MGETHDR(m, M_DONTWAIT, MT_HEADER); + MGETHDR(m, M_DONTWAIT, MT_DATA); if (m == NULL) { error = ENOBUFS; goto out; |
