Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Fix misspelling: accommodate is a long enough word to have ...
details: https://anonhg.NetBSD.org/src/rev/a1fbbf31db2d
branches: trunk
changeset: 783007:a1fbbf31db2d
user: mbalmer <mbalmer%NetBSD.org@localhost>
date: Sat Dec 01 11:41:49 2012 +0000
description:
Fix misspelling: accommodate is a long enough word to have room for two 'c's
and two 'm's.
diffstat:
sys/fs/nilfs/nilfs_fs.h | 6 +++---
sys/kern/subr_tftproot.c | 6 +++---
sys/sys/quotactl.h | 4 ++--
sys/sys/sysctl.h | 4 ++--
usr.bin/mail/head.c | 6 +++---
5 files changed, 13 insertions(+), 13 deletions(-)
diffs (117 lines):
diff -r dea43c912025 -r a1fbbf31db2d sys/fs/nilfs/nilfs_fs.h
--- a/sys/fs/nilfs/nilfs_fs.h Sat Dec 01 11:37:26 2012 +0000
+++ b/sys/fs/nilfs/nilfs_fs.h Sat Dec 01 11:41:49 2012 +0000
@@ -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_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 @@
/* ... */
};
-/* 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 -r dea43c912025 -r a1fbbf31db2d sys/kern/subr_tftproot.c
--- a/sys/kern/subr_tftproot.c Sat Dec 01 11:37:26 2012 +0000
+++ b/sys/kern/subr_tftproot.c Sat Dec 01 11:41:49 2012 +0000
@@ -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 @@
}
/*
- * 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 -r dea43c912025 -r a1fbbf31db2d sys/sys/quotactl.h
--- a/sys/sys/quotactl.h Sat Dec 01 11:37:26 2012 +0000
+++ b/sys/sys/quotactl.h Sat Dec 01 11:41:49 2012 +0000
@@ -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 @@
/*
* 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 -r dea43c912025 -r a1fbbf31db2d sys/sys/sysctl.h
--- a/sys/sys/sysctl.h Sat Dec 01 11:37:26 2012 +0000
+++ b/sys/sys/sysctl.h Sat Dec 01 11:41:49 2012 +0000
@@ -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 @@
* 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 -r dea43c912025 -r a1fbbf31db2d usr.bin/mail/head.c
--- a/usr.bin/mail/head.c Sat Dec 01 11:37:26 2012 +0000
+++ b/usr.bin/mail/head.c Sat Dec 01 11:41:49 2012 +0000
@@ -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 @@
/*
* 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[])
Home |
Main Index |
Thread Index |
Old Index