summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlteo <lteo@openbsd.org>2016-10-17 02:53:47 +0000
committerlteo <lteo@openbsd.org>2016-10-17 02:53:47 +0000
commit319f7305f8d6ded49e1cab7eb7976f09ce57874f (patch)
tree0d3c4e1d5d2cc7ce67bb005fa18e5249af83ee6e
parentmechanical rename of vnode to mkfsvnode and buf to mkfsbuf to avoid (diff)
downloadwireguard-openbsd-319f7305f8d6ded49e1cab7eb7976f09ce57874f.tar.xz
wireguard-openbsd-319f7305f8d6ded49e1cab7eb7976f09ce57874f.zip
"send/received" -> "sent/received"
ok jmc@
-rw-r--r--share/man/man9/mbuf.98
-rw-r--r--sys/sys/mbuf.h6
2 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9
index 839d01bfb70..13246317090 100644
--- a/share/man/man9/mbuf.9
+++ b/share/man/man9/mbuf.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mbuf.9,v 1.104 2016/09/15 00:00:40 dlg Exp $
+.\" $OpenBSD: mbuf.9,v 1.105 2016/10/17 02:53:47 lteo 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: September 15 2016 $
+.Dd $Mdocdate: October 17 2016 $
.Dt MGET 9
.Os
.Sh NAME
@@ -295,9 +295,9 @@ for mbuf statistics.
.It Dv M_ACAST
received as IPv6 anycast.
.It Dv M_BCAST
-packet send/received as link-level broadcast.
+packet sent/received as link-level broadcast.
.It Dv M_MCAST
-packet send/received as link-level multicast.
+packet sent/received as link-level multicast.
.It Dv M_CONF
packet was encrypted (ESP-transport).
.It Dv M_AUTH
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index eb143aa4a81..26d6ad51b68 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mbuf.h,v 1.220 2016/09/17 00:38:43 deraadt Exp $ */
+/* $OpenBSD: mbuf.h,v 1.221 2016/10/17 02:53:47 lteo Exp $ */
/* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */
/*
@@ -185,8 +185,8 @@ struct mbuf {
#define M_VLANTAG 0x0020 /* ether_vtag is valid */
#define M_LOOP 0x0040 /* for Mbuf statistics */
#define M_ACAST 0x0080 /* received as IPv6 anycast */
-#define M_BCAST 0x0100 /* send/received as link-level broadcast */
-#define M_MCAST 0x0200 /* send/received as link-level multicast */
+#define M_BCAST 0x0100 /* sent/received as link-level broadcast */
+#define M_MCAST 0x0200 /* sent/received as link-level multicast */
#define M_CONF 0x0400 /* payload was encrypted (ESP-transport) */
#define M_AUTH 0x0800 /* payload was authenticated (AH or ESP auth) */
#define M_TUNNEL 0x1000 /* IP-in-IP added by tunnel mode IPsec */