Module Name: src
Committed By: mbalmer
Date: Sat Dec 1 11:41:50 UTC 2012
Modified Files:
src/sys/fs/nilfs: nilfs_fs.h
src/sys/kern: subr_tftproot.c
src/sys/sys: quotactl.h sysctl.h
src/usr.bin/mail: head.c
Log Message:
Fix misspelling: accommodate is a long enough word to have room for two 'c's
and two 'm's.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/fs/nilfs/nilfs_fs.h
cvs rdiff -u -r1.11 -r1.12 src/sys/kern/subr_tftproot.c
cvs rdiff -u -r1.35 -r1.36 src/sys/sys/quotactl.h
cvs rdiff -u -r1.203 -r1.204 src/sys/sys/sysctl.h
cvs rdiff -u -r1.21 -r1.22 src/usr.bin/mail/head.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/fs/nilfs/nilfs_fs.h
diff -u src/sys/fs/nilfs/nilfs_fs.h:1.2 src/sys/fs/nilfs/nilfs_fs.h:1.3
--- src/sys/fs/nilfs/nilfs_fs.h:1.2 Thu Jun 24 10:20:08 2010
+++ src/sys/fs/nilfs/nilfs_fs.h Sat Dec 1 11:41:49 2012
@@ -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) / \
Index: src/sys/kern/subr_tftproot.c
diff -u src/sys/kern/subr_tftproot.c:1.11 src/sys/kern/subr_tftproot.c:1.12
--- src/sys/kern/subr_tftproot.c:1.11 Sat Oct 27 17:18:39 2012
+++ src/sys/kern/subr_tftproot.c Sat Dec 1 11:41:50 2012
@@ -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,
Index: src/sys/sys/quotactl.h
diff -u src/sys/sys/quotactl.h:1.35 src/sys/sys/quotactl.h:1.36
--- src/sys/sys/quotactl.h:1.35 Wed Feb 1 05:46:45 2012
+++ src/sys/sys/quotactl.h Sat Dec 1 11:41:50 2012
@@ -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.
*/
Index: src/sys/sys/sysctl.h
diff -u src/sys/sys/sysctl.h:1.203 src/sys/sys/sysctl.h:1.204
--- src/sys/sys/sysctl.h:1.203 Sun Oct 14 20:56:55 2012
+++ src/sys/sys/sysctl.h Sat Dec 1 11:41:50 2012
@@ -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 */
Index: src/usr.bin/mail/head.c
diff -u src/usr.bin/mail/head.c:1.21 src/usr.bin/mail/head.c:1.22
--- src/usr.bin/mail/head.c:1.21 Tue Oct 23 14:58:44 2007
+++ src/usr.bin/mail/head.c Sat Dec 1 11:41:50 2012
@@ -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
/*
* 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[])