diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-25 02:57:24 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-25 02:57:24 +0000 |
commit | 9006155512354a5a94ada1cf230304eb15e36077 (patch) | |
tree | c1714f8c22d6c7936c3ea4a40a660c516f05b23e /sys | |
parent | 679c5caf5ce0465d27fac721b770f63176201435 (diff) |
Don't double-clear M_PKTHDR/tags.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netiso/tuba_subr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netiso/tuba_subr.c b/sys/netiso/tuba_subr.c index f665734b793..e91a1f86e18 100644 --- a/sys/netiso/tuba_subr.c +++ b/sys/netiso/tuba_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tuba_subr.c,v 1.7 2001/05/27 12:26:06 angelos Exp $ */ +/* $OpenBSD: tuba_subr.c,v 1.8 2001/06/25 02:57:23 angelos Exp $ */ /* $NetBSD: tuba_subr.c,v 1.7 1996/02/13 22:12:32 christos Exp $ */ /* @@ -330,8 +330,6 @@ tuba_tcpinput(m, va_alist) goto drop; } M_COPY_PKTHDR(m, m0); - m_tag_init(m0); - m0->m_flags &= ~M_PKTHDR; m->m_next = m0; m->m_data += max_linkhdr; if (len < sizeof(struct tcphdr)) { |