diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-01-10 05:44:41 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-01-10 05:44:41 +0000 |
commit | 88a3bfeca9b74637bd1e6732838ffd3428197970 (patch) | |
tree | 480938d77cf7d93c9097d81deba74f073a25effc | |
parent | d7faa49ab4c97362f685bfa9cf49ada58f20e5a7 (diff) |
m_hdr.mh_flags has been u_short for some time now.
Kill uneeded line while here.
-rw-r--r-- | share/man/man9/mbuf.9 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 528ff092339..ca47018be23 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.16 2004/11/27 00:59:14 pvalchev Exp $ +.\" $OpenBSD: mbuf.9,v 1.17 2005/01/10 05:44:40 jsg Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -109,7 +109,7 @@ struct m_hdr { caddr_t mh_data; u_int mh_len; short mh_type; - short mh_flags; + u_short mh_flags; }; struct pkthdr { @@ -117,7 +117,6 @@ struct pkthdr { SLIST_HEAD(packet_tags, m_tag) tags; int len; int csum; - }; struct m_ext { |