diff options
author | 2005-01-10 05:44:40 +0000 | |
---|---|---|
committer | 2005-01-10 05:44:40 +0000 | |
commit | 1a621b89a25264733c8cd6762b14cb17b5d4abb8 (patch) | |
tree | f429e54002b8315a9557295a2459d44ad11e909c | |
parent | phy sanity (diff) | |
download | wireguard-openbsd-1a621b89a25264733c8cd6762b14cb17b5d4abb8.tar.xz wireguard-openbsd-1a621b89a25264733c8cd6762b14cb17b5d4abb8.zip |
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 { |