aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ctau
diff options
context:
space:
mode:
authorRoman Kurakin <rik@FreeBSD.org>2005-07-09 16:14:05 +0000
committerRoman Kurakin <rik@FreeBSD.org>2005-07-09 16:14:05 +0000
commit0541e456c99088d0cfcf7eae1564f6e59e1429d5 (patch)
tree7236153fa972c4171adfc38df99840d1537c3096 /sys/dev/ctau
parentea78cad4bfb2e1afdae55df7dc71fc623a82c616 (diff)
downloadsrc-0541e456c99088d0cfcf7eae1564f6e59e1429d5.tar.gz
src-0541e456c99088d0cfcf7eae1564f6e59e1429d5.zip
Use m_length (m, NULL) instead of m->m_pkthdr.len.
Problems reported by: strijar at urai dot ru Approved by: re (scottl)
Notes
Notes: svn path=/head/; revision=147862
Diffstat (limited to 'sys/dev/ctau')
-rw-r--r--sys/dev/ctau/if_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c
index f026a9fbbc0d..f231820816e0 100644
--- a/sys/dev/ctau/if_ct.c
+++ b/sys/dev/ctau/if_ct.c
@@ -1033,7 +1033,7 @@ static void ct_send (drv_t *d)
if (d->ifp->if_bpf)
BPF_MTAP (d->ifp, m);
#endif
- len = m->m_pkthdr.len;
+ len = m_length (m, NULL);
if (! m->m_next)
ct_send_packet (d->chan, (u_char*)mtod (m, caddr_t),
len, 0);