diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-23 03:52:48 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-23 03:52:48 +0000 |
commit | ea31bbdc64757c84746b24c5949ad1f9da223d5b (patch) | |
tree | 4b3625e55c62a0cc4786982241dda28db5d0e08d /sys/dev | |
parent | f0329d79a92d6db2379d68fe30a48bd76754a4ad (diff) |
Actually, should just use m_tag_init()
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/isa/if_iy.c | 4 |
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; |