diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-11-18 08:20:52 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-11-18 08:20:52 +0000 |
commit | 774d0eee301d370e2c59430213931a12d05ede27 (patch) | |
tree | 3d1cb699acd53d23a3e73bdbc5090c23f4d5311e /sys/kern | |
parent | 87eecbbee2d564f811f4ca5875091ff65128a527 (diff) |
typos; from bret lambert
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/tty_nmea.c | 6 | ||||
-rw-r--r-- | sys/kern/uipc_mbuf2.c | 6 | ||||
-rw-r--r-- | sys/kern/vfs_conf.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/tty_nmea.c b/sys/kern/tty_nmea.c index 790a47ef743..7947fdd9e9d 100644 --- a/sys/kern/tty_nmea.c +++ b/sys/kern/tty_nmea.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty_nmea.c,v 1.10 2006/06/21 06:24:50 mbalmer Exp $ */ +/* $OpenBSD: tty_nmea.c,v 1.11 2006/11/18 08:20:51 jmc Exp $ */ /* * Copyright (c) 2006 Marc Balmer <mbalmer@openbsd.org> @@ -121,9 +121,9 @@ nmeainput(int c, struct tty *tp) switch (c) { case '$': /* - * capture the moment, take a soft timestamp in any case, + * Capture the moment, take a soft timestamp in any case, * it is possible that tty timestamping has been requested - * but device device does not privide a PPS signal. In this + * but device does not provide a PPS signal. In this * case we use the soft timestamp later. */ nanotime(&np->ts); 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) { diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 503eb48c16c..ecdff9ecca0 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_conf.c,v 1.30 2006/09/22 14:23:04 pedro Exp $ */ +/* $OpenBSD: vfs_conf.c,v 1.31 2006/11/18 08:20:51 jmc Exp $ */ /* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */ /* @@ -199,7 +199,7 @@ struct vfsconf *vfsconf = vfsconflist; /* - * vfs_opv_descs enumerates the list of vnode classes, each with it's own + * vfs_opv_descs enumerates the list of vnode classes, each with its own * vnode operation vector. It is consulted at system boot to build operation * vectors. It is NULL terminated. */ |