summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2001-06-23 03:52:47 +0000
committerangelos <angelos@openbsd.org>2001-06-23 03:52:47 +0000
commit53fe728f45b9c87a86405300cbd10bb919ec01d3 (patch)
tree5f99ceca3f755768b502eb97533f4b0d50158dcd
parentTypo. (diff)
downloadwireguard-openbsd-53fe728f45b9c87a86405300cbd10bb919ec01d3.tar.xz
wireguard-openbsd-53fe728f45b9c87a86405300cbd10bb919ec01d3.zip
Actually, should just use m_tag_init()
-rw-r--r--sys/dev/isa/if_iy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/if_iy.c b/sys/dev/isa/if_iy.c
index 8c4bc680006..6e0af8525ba 100644
--- a/sys/dev/isa/if_iy.c
+++ b/sys/dev/isa/if_iy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iy.c,v 1.10 2001/06/23 02:09:21 angelos Exp $ */
+/* $OpenBSD: if_iy.c,v 1.11 2001/06/23 03:52:47 angelos Exp $ */
/* $NetBSD: if_iy.c,v 1.4 1996/05/12 23:52:53 mycroft Exp $ */
/* #define IYDEBUG */
/* #define IYMEMDEBUG */
@@ -796,7 +796,7 @@ int iobase, rxlen;
sc->next_mb = (sc->next_mb + 1) % MAX_MBS;
m->m_data = m->m_pktdat;
m->m_flags = M_PKTHDR;
- LIST_INIT(&m->m_pkthdr.tags);
+ m_tag_init(m);
}
m->m_pkthdr.rcvif = ifp;
m->m_pkthdr.len = rxlen;