diff options
author | 2009-01-28 23:08:58 +0000 | |
---|---|---|
committer | 2009-01-28 23:08:58 +0000 | |
commit | 3369e3834cbb02ea3b7300cc89b3a46912e891cc (patch) | |
tree | fa1ad1a5b4cb5387c3d2b8a52970dca7f322b59e | |
parent | everything we need for the event handling dance is in struct session, the (diff) | |
download | wireguard-openbsd-3369e3834cbb02ea3b7300cc89b3a46912e891cc.tar.xz wireguard-openbsd-3369e3834cbb02ea3b7300cc89b3a46912e891cc.zip |
Correctly document MINCLSIZE which changed some time ago.
OK mbalmer@ a long time ago
-rw-r--r-- | share/man/man9/mbuf.9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 007c3efd6d3..c24e975a97d 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.41 2009/01/26 11:51:14 bluhm Exp $ +.\" $OpenBSD: mbuf.9,v 1.42 2009/01/28 23:08:58 claudio Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: January 26 2009 $ +.Dd $Mdocdate: January 28 2009 $ .Dt MBUF 9 .Os .Sh NAME @@ -99,7 +99,7 @@ #define MLEN (MSIZE - sizeof(struct m_hdr)) #define MHLEN (MLEN - sizeof(struct pkthdr)) -#define MINCLSIZE (MHLEN + 1) +#define MINCLSIZE (MHLEN + MLEN + 1) #define M_MAXCOMPRESS (MHLEN / 2) #define mtod(m,t) ((t)((m)-\*(Gtm_data)) |