Index: mbuf.h =================================================================== RCS file: /home/ncvs/src/sys/sys/mbuf.h,v retrieving revision 1.104 diff -u -2 -r1.104 mbuf.h --- mbuf.h 18 Sep 2002 20:28:58 -0000 1.104 +++ mbuf.h 18 Sep 2002 22:10:23 -0000 @@ -294,5 +294,5 @@ /* * MEXTFREE(m): disassociate (and possibly free) an external object from (m). - * + * * If the atomic_cmpset_int() returns 0, then we effectively do nothing * in terms of "cleaning up" (freeing the ext buf and ref. counter) as @@ -480,5 +480,5 @@ void (*copy)(char *, caddr_t, u_int)); struct mbuf *m_dup(struct mbuf *, int); -unsigned m_fixhdr(struct mbuf *); +u_int m_fixhdr(struct mbuf *); struct mbuf *m_free(struct mbuf *); void m_freem(struct mbuf *); @@ -489,5 +489,5 @@ struct mbuf *m_gethdr_clrd(int, short); struct mbuf *m_getm(struct mbuf *, int, int, short); -unsigned m_length(struct mbuf *, struct mbuf **); +u_int m_length(struct mbuf *, struct mbuf **); struct mbuf *m_prepend(struct mbuf *, int, int); void m_print(const struct mbuf *);