Fix misspelling: accommodate is a long enough word to have room for two 'c's

and two 'm's.
This commit is contained in:
mbalmer 2012-12-01 11:41:49 +00:00
parent 2913016879
commit e3f283b63f
5 changed files with 13 additions and 13 deletions

View File

@ -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 * Copyright (c) 2008, 2009 Reinoud Zandijk
@ -513,7 +513,7 @@ struct nilfs_cpfile_header {
struct nilfs_snapshot_list ch_snapshot_list; /* snapshot list */ 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 \ #define NILFS_CPFILE_FIRST_CHECKPOINT_OFFSET \
((sizeof(struct nilfs_cpfile_header) + \ ((sizeof(struct nilfs_cpfile_header) + \
sizeof(struct nilfs_checkpoint) - 1) / \ 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 \ #define NILFS_SUFILE_FIRST_SEGMENT_USAGE_OFFSET \
((sizeof(struct nilfs_sufile_header) + \ ((sizeof(struct nilfs_sufile_header) + \
sizeof(struct nilfs_segment_usage) - 1) / \ sizeof(struct nilfs_segment_usage) - 1) / \

View File

@ -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. * Copyright (c) 2007 Emmanuel Dreyfus, all rights reserved.
@ -39,7 +39,7 @@
#include "opt_md.h" #include "opt_md.h"
#include <sys/cdefs.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/param.h>
#include <sys/types.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); newlen = trh->trh_len + (m->m_pkthdr.len - hdrlen);
if ((trh->trh_base = realloc(trh->trh_base, if ((trh->trh_base = realloc(trh->trh_base,

View File

@ -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. * Copyright (c) 2011 The NetBSD Foundation, Inc.
* All rights reserved. * All rights reserved.
@ -66,7 +66,7 @@ struct quotaobjtypestat {
/* /*
* Semi-opaque structure for cursors. This holds the cursor state in * Semi-opaque structure for cursors. This holds the cursor state in
* userland; the size is exposed only to libquota, not to client code, * 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 * expansion without being unduly bloated, as it will need to be
* copied in and out for every call using it. * copied in and out for every call using it.
*/ */

View File

@ -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 * Copyright (c) 1989, 1993
@ -800,7 +800,7 @@ struct kinfo_file {
* kern.evcnt returns an array of these structures, which are designed both to * 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 * 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 * from the real struct evcnt but contains the same information in order to
* accomodate sysctl. * accommodate sysctl.
*/ */
struct evcnt_sysctl { struct evcnt_sysctl {
uint64_t ev_count; /* current count */ uint64_t ev_count; /* current count */

View File

@ -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 * Copyright (c) 1980, 1993
@ -34,7 +34,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 4/20/95"; static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 4/20/95";
#else #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
#endif /* not lint */ #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. * See if the passed line buffer is a mail header.
* Return true if yes. Note the extreme pains to * Return true if yes. Note the extreme pains to
* accomodate all funny formats. * accommodate all funny formats.
*/ */
PUBLIC int PUBLIC int
ishead(const char linebuf[]) ishead(const char linebuf[])