summaryrefslogtreecommitdiff
path: root/sys/kern/uipc_mbuf2.c
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2006-11-18 08:20:52 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2006-11-18 08:20:52 +0000
commit774d0eee301d370e2c59430213931a12d05ede27 (patch)
tree3d1cb699acd53d23a3e73bdbc5090c23f4d5311e /sys/kern/uipc_mbuf2.c
parent87eecbbee2d564f811f4ca5875091ff65128a527 (diff)
typos; from bret lambert
Diffstat (limited to 'sys/kern/uipc_mbuf2.c')
-rw-r--r--sys/kern/uipc_mbuf2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/uipc_mbuf2.c b/sys/kern/uipc_mbuf2.c
index ae71cda90d8..dce50e93814 100644
--- a/sys/kern/uipc_mbuf2.c
+++ b/sys/kern/uipc_mbuf2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uipc_mbuf2.c,v 1.24 2006/03/17 04:15:51 brad Exp $ */
+/* $OpenBSD: uipc_mbuf2.c,v 1.25 2006/11/18 08:20:51 jmc Exp $ */
/* $KAME: uipc_mbuf2.c,v 1.29 2001/02/14 13:42:10 itojun Exp $ */
/* $NetBSD: uipc_mbuf.c,v 1.40 1999/04/01 00:23:25 thorpej Exp $ */
@@ -72,7 +72,7 @@
static struct mbuf *m_dup1(struct mbuf *, int, int, int);
/*
- * ensure that [off, off + len) is contiguous on the mbuf chain "m".
+ * ensure that [off, off + len] is contiguous on the mbuf chain "m".
* packet chain before "off" is kept untouched.
* if offp == NULL, the target will start at <retval, 0> on resulting chain.
* if offp != NULL, the target will start at <retval, *offp> on resulting chain.
@@ -188,7 +188,7 @@ m_pulldown(struct mbuf *m, int off, int len, int *offp)
/*
* now, we need to do the hard way. don't m_copy as there's no room
- * on both end.
+ * on both ends.
*/
MGET(o, M_DONTWAIT, m->m_type);
if (o && len > MLEN) {