summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormbalmer <mbalmer@NetBSD.org>2012-12-01 11:41:49 +0000
committermbalmer <mbalmer@NetBSD.org>2012-12-01 11:41:49 +0000
commitad5b0ea0dff6ebdef0c72153dba2fb6a1dbbb8f7 (patch)
tree17f71002141297ddcbeeb50bb57679c05cf009df
parentb3bbdd01997636e716e7355f15d513431b003414 (diff)
Fix misspelling: accommodate is a long enough word to have room for two 'c's
and two 'm's.
-rw-r--r--sys/fs/nilfs/nilfs_fs.h6
-rw-r--r--sys/kern/subr_tftproot.c6
-rw-r--r--sys/sys/quotactl.h4
-rw-r--r--sys/sys/sysctl.h4
-rw-r--r--usr.bin/mail/head.c6
5 files changed, 13 insertions, 13 deletions
diff --git a/sys/fs/nilfs/nilfs_fs.h b/sys/fs/nilfs/nilfs_fs.h
index 713c51e29dc..47d3e10fad8 100644
--- a/sys/fs/nilfs/nilfs_fs.h
+++ b/sys/fs/nilfs/nilfs_fs.h
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_fs.h,v 1.2 2010/06/24 10:20:08 reinoud Exp $ */
+/* $NetBSD: nilfs_fs.h,v 1.3 2012/12/01 11:41:49 mbalmer Exp $ */
/*
* Copyright (c) 2008, 2009 Reinoud Zandijk
@@ -513,7 +513,7 @@ struct nilfs_cpfile_header {
struct nilfs_snapshot_list ch_snapshot_list; /* snapshot list */
};
-/* to accomodate with the header */
+/* to accommodate with the header */
#define NILFS_CPFILE_FIRST_CHECKPOINT_OFFSET \
((sizeof(struct nilfs_cpfile_header) + \
sizeof(struct nilfs_checkpoint) - 1) / \
@@ -549,7 +549,7 @@ struct nilfs_sufile_header {
/* ... */
};
-/* to accomodate with the header */
+/* to accommodate with the header */
#define NILFS_SUFILE_FIRST_SEGMENT_USAGE_OFFSET \
((sizeof(struct nilfs_sufile_header) + \
sizeof(struct nilfs_segment_usage) - 1) / \
diff --git a/sys/kern/subr_tftproot.c b/sys/kern/subr_tftproot.c
index 3440c573cd7..f0b9a46706a 100644
--- a/sys/kern/subr_tftproot.c
+++ b/sys/kern/subr_tftproot.c
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_tftproot.c,v 1.11 2012/10/27 17:18:39 chs Exp $ */
+/* $NetBSD: subr_tftproot.c,v 1.12 2012/12/01 11:41:50 mbalmer Exp $ */
/*-
* Copyright (c) 2007 Emmanuel Dreyfus, all rights reserved.
@@ -39,7 +39,7 @@
#include "opt_md.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_tftproot.c,v 1.11 2012/10/27 17:18:39 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_tftproot.c,v 1.12 2012/12/01 11:41:50 mbalmer Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -439,7 +439,7 @@ tftproot_recv(struct mbuf *m, void *ctx)
}
/*
- * Grow the receiving buffer to accomodate new data
+ * Grow the receiving buffer to accommodate new data
*/
newlen = trh->trh_len + (m->m_pkthdr.len - hdrlen);
if ((trh->trh_base = realloc(trh->trh_base,
diff --git a/sys/sys/quotactl.h b/sys/sys/quotactl.h
index 7a70a0b3e07..69d3faafca7 100644
--- a/sys/sys/quotactl.h
+++ b/sys/sys/quotactl.h
@@ -1,4 +1,4 @@
-/* $NetBSD: quotactl.h,v 1.35 2012/02/01 05:46:45 dholland Exp $ */
+/* $NetBSD: quotactl.h,v 1.36 2012/12/01 11:41:50 mbalmer Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -66,7 +66,7 @@ struct quotaobjtypestat {
/*
* Semi-opaque structure for cursors. This holds the cursor state in
* userland; the size is exposed only to libquota, not to client code,
- * and is meant to be large enough to accomodate all likely future
+ * and is meant to be large enough to accommodate all likely future
* expansion without being unduly bloated, as it will need to be
* copied in and out for every call using it.
*/
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 48f28d00160..1275c52b2d3 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -1,4 +1,4 @@
-/* $NetBSD: sysctl.h,v 1.203 2012/10/14 20:56:55 christos Exp $ */
+/* $NetBSD: sysctl.h,v 1.204 2012/12/01 11:41:50 mbalmer Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -800,7 +800,7 @@ struct kinfo_file {
* kern.evcnt returns an array of these structures, which are designed both to
* be immune to 32/64 bit emulation issues. Note that the struct here differs
* from the real struct evcnt but contains the same information in order to
- * accomodate sysctl.
+ * accommodate sysctl.
*/
struct evcnt_sysctl {
uint64_t ev_count; /* current count */
diff --git a/usr.bin/mail/head.c b/usr.bin/mail/head.c
index 0f35e943088..52c7b51f82e 100644
--- a/usr.bin/mail/head.c
+++ b/usr.bin/mail/head.c
@@ -1,4 +1,4 @@
-/* $NetBSD: head.c,v 1.21 2007/10/23 14:58:44 christos Exp $ */
+/* $NetBSD: head.c,v 1.22 2012/12/01 11:41:50 mbalmer Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 4/20/95";
#else
-__RCSID("$NetBSD: head.c,v 1.21 2007/10/23 14:58:44 christos Exp $");
+__RCSID("$NetBSD: head.c,v 1.22 2012/12/01 11:41:50 mbalmer Exp $");
#endif
#endif /* not lint */
@@ -219,7 +219,7 @@ parse(const char line[], struct headline *hl, char pbuf[])
/*
* See if the passed line buffer is a mail header.
* Return true if yes. Note the extreme pains to
- * accomodate all funny formats.
+ * accommodate all funny formats.
*/
PUBLIC int
ishead(const char linebuf[])