summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2006-10-12 07:24:31 +0000
committerjmc <jmc@openbsd.org>2006-10-12 07:24:31 +0000
commit558fdf8f0923d0ba8416be150ea464f532bbeea4 (patch)
tree8312e99fba6e5059154721bdbc7885ed1bdfd3b9
parentsparc64 should be in the #ifdef (diff)
downloadwireguard-openbsd-558fdf8f0923d0ba8416be150ea464f532bbeea4.tar.xz
wireguard-openbsd-558fdf8f0923d0ba8416be150ea464f532bbeea4.zip
- give smm/18.net a title
- mark up `>'
-rw-r--r--share/man/man9/mbuf.98
1 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9
index 5a6c8f62e69..fbe6ffa4411 100644
--- a/share/man/man9/mbuf.9
+++ b/share/man/man9/mbuf.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mbuf.9,v 1.22 2006/10/11 22:39:46 mpf Exp $
+.\" $OpenBSD: mbuf.9,v 1.23 2006/10/12 07:24:31 jmc Exp $
.\"
.\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org>
.\" All rights reserved.
@@ -101,7 +101,7 @@
#define MINCLSIZE (MHLEN + 1)
#define M_MAXCOMPRESS (MHLEN / 2)
-#define mtod(m,t) ((t)((m)->m_data))
+#define mtod(m,t) ((t)((m)-\*(Gtm_data))
struct m_hdr {
struct mbuf *mh_next;
@@ -648,7 +648,9 @@ to
.El
.Sh SEE ALSO
.Xr netstat 1 ,
-.Xr mbuf_tags 9 ,
+.Xr mbuf_tags 9
+.Pp
+"Networking Implementation Notes",
.Pa /usr/share/doc/smm/18.net .
.Rs
.%A Jun-Ichiro Hagino