Index: uipc_mbuf2.c =================================================================== RCS file: /home/ncvs/src/sys/kern/uipc_mbuf2.c,v retrieving revision 1.24 diff -u -r1.24 uipc_mbuf2.c --- uipc_mbuf2.c 9 May 2004 05:57:58 -0000 1.24 +++ uipc_mbuf2.c 18 May 2004 12:00:06 -0000 @@ -329,7 +329,7 @@ t = malloc(len + sizeof(struct m_tag), M_PACKET_TAGS, wait); if (t == NULL) return NULL; - m_tag_setup(t, cookie, type, len); + m_tag_init(t, cookie, type, len); t->m_tag_free = _m_tag_free; return t; }