Skip to content

Commit

Permalink
fix spelling of accommodate; from Zapher.
Browse files Browse the repository at this point in the history
  • Loading branch information
zoulasc committed Nov 24, 2006
1 parent 423ab6f commit 7affecf
Show file tree
Hide file tree
Showing 41 changed files with 109 additions and 109 deletions.
6 changes: 3 additions & 3 deletions games/hack/hack.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: hack.c,v 1.6 2003/04/02 18:36:35 jsm Exp $ */
/* $NetBSD: hack.c,v 1.7 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
Expand Down Expand Up @@ -63,7 +63,7 @@

#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: hack.c,v 1.6 2003/04/02 18:36:35 jsm Exp $");
__RCSID("$NetBSD: hack.c,v 1.7 2006/11/24 19:46:58 christos Exp $");
#endif /* not lint */

#include "hack.h"
Expand Down Expand Up @@ -527,7 +527,7 @@ pickup(int all)
}
lift_some:
if (inv_cnt() >= 52) {
pline("Your knapsack cannot accomodate anymore items.");
pline("Your knapsack cannot accommodate anymore items.");
break;
}
if (wt > -5)
Expand Down
4 changes: 2 additions & 2 deletions include/netdb.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: netdb.h,v 1.54 2006/07/27 18:29:01 christos Exp $ */
/* $NetBSD: netdb.h,v 1.55 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1980, 1983, 1988, 1993
Expand Down Expand Up @@ -182,7 +182,7 @@ struct protoent {
* Note: ai_addrlen used to be a size_t, per RFC 2553.
* In XNS5.2, and subsequently in POSIX-2001 and
* draft-ietf-ipngwg-rfc2553bis-02.txt it was changed to a socklen_t.
* To accomodate for this while preserving binary compatibility with the
* To accommodate for this while preserving binary compatibility with the
* old interface, we prepend or append 32 bits of padding, depending on
* the (LP64) architecture's endianness.
*
Expand Down
6 changes: 3 additions & 3 deletions lib/libc/gen/glob.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: glob.c,v 1.16 2006/03/26 18:11:22 christos Exp $ */
/* $NetBSD: glob.c,v 1.17 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1989, 1993
Expand Down Expand Up @@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93";
#else
__RCSID("$NetBSD: glob.c,v 1.16 2006/03/26 18:11:22 christos Exp $");
__RCSID("$NetBSD: glob.c,v 1.17 2006/11/24 19:46:58 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */

Expand Down Expand Up @@ -772,7 +772,7 @@ glob3(pathbuf, pathend, pathlim, pattern, restpattern, pglob, limit)


/*
* Extend the gl_pathv member of a glob_t structure to accomodate a new item,
* Extend the gl_pathv member of a glob_t structure to accommodate a new item,
* add the new item, and update gl_pathc.
*
* This assumes the BSD realloc, which only copies the block when its size
Expand Down
4 changes: 2 additions & 2 deletions lib/libc/softfloat/softfloat-source.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$NetBSD: softfloat-source.txt,v 1.1 2000/06/06 08:15:10 bjh21 Exp $
$NetBSD: softfloat-source.txt,v 1.2 2006/11/24 19:46:58 christos Exp $

SoftFloat Release 2a Source Documentation

Expand Down Expand Up @@ -32,7 +32,7 @@ C Compiler (`gcc') for several platforms.
Limitations

SoftFloat as written requires an ISO/ANSI-style C compiler. No attempt has
been made to accomodate compilers that are not ISO-conformant. Older ``K&R-
been made to accommodate compilers that are not ISO-conformant. Older ``K&R-
style'' compilers are not adequate for compiling SoftFloat. All testing I
have done so far has been with the GNU C Compiler. Compilation with other
compilers should be possible but has not been tested.
Expand Down
4 changes: 2 additions & 2 deletions lib/libc/softfloat/softfloat.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$NetBSD: softfloat.txt,v 1.1 2000/06/06 08:15:10 bjh21 Exp $
$NetBSD: softfloat.txt,v 1.2 2006/11/24 19:46:58 christos Exp $

SoftFloat Release 2a General Documentation

Expand Down Expand Up @@ -26,7 +26,7 @@ Limitations

SoftFloat is written in C and is designed to work with other C code. The
SoftFloat header files assume an ISO/ANSI-style C compiler. No attempt
has been made to accomodate compilers that are not ISO-conformant. In
has been made to accommodate compilers that are not ISO-conformant. In
particular, the distributed header files will not be acceptable to any
compiler that does not recognize function prototypes.

Expand Down
6 changes: 3 additions & 3 deletions lib/libc/stdio/fgetstr.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: fgetstr.c,v 1.3 2005/05/14 23:51:02 christos Exp $ */
/* $NetBSD: fgetstr.c,v 1.4 2006/11/24 19:46:58 christos Exp $ */

/*-
* Copyright (c) 1990, 1993
Expand Down Expand Up @@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)fgetline.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: fgetstr.c,v 1.3 2005/05/14 23:51:02 christos Exp $");
__RCSID("$NetBSD: fgetstr.c,v 1.4 2006/11/24 19:46:58 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */

Expand Down Expand Up @@ -127,7 +127,7 @@ __fgetstr(fp, lenp, sep)
* As a bonus, though, we can leave off the __SMOD.
*
* OPTIMISTIC is length that we (optimistically) expect will
* accomodate the `rest' of the string, on each trip through the
* accommodate the `rest' of the string, on each trip through the
* loop below.
*/
#define OPTIMISTIC 80
Expand Down
6 changes: 3 additions & 3 deletions lib/libmenu/internals.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: internals.c,v 1.12 2003/03/09 01:08:48 lukem Exp $ */
/* $NetBSD: internals.c,v 1.13 2006/11/24 19:46:58 christos Exp $ */

/*-
* Copyright (c) 1998-1999 Brett Lymn (blymn@baea.com.au, brett_lymn@yahoo.com.au)
Expand Down Expand Up @@ -27,7 +27,7 @@
*/

#include <sys/cdefs.h>
__RCSID("$NetBSD: internals.c,v 1.12 2003/03/09 01:08:48 lukem Exp $");
__RCSID("$NetBSD: internals.c,v 1.13 2006/11/24 19:46:58 christos Exp $");

#include <menu.h>
#include <ctype.h>
Expand All @@ -45,7 +45,7 @@ static void _menui_redraw_menu(MENU *menu, int old_top_row, int old_cur_item);
/*
* Link all the menu items together to speed up navigation. We need
* to calculate the widest item entry, then work out how many columns
* of items the window will accomodate and then how many rows there will
* of items the window will accommodate and then how many rows there will
* be. Once the layout is determined the neighbours of each item is
* calculated and the item structures updated.
*/
Expand Down
6 changes: 3 additions & 3 deletions lib/libpthread/pthread_sig.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: pthread_sig.c,v 1.46 2006/06/12 16:45:14 chuck Exp $ */
/* $NetBSD: pthread_sig.c,v 1.47 2006/11/24 19:46:58 christos Exp $ */

/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
Expand Down Expand Up @@ -37,7 +37,7 @@
*/

#include <sys/cdefs.h>
__RCSID("$NetBSD: pthread_sig.c,v 1.46 2006/06/12 16:45:14 chuck Exp $");
__RCSID("$NetBSD: pthread_sig.c,v 1.47 2006/11/24 19:46:58 christos Exp $");

/* We're interposing a specific version of the signal interface. */
#define __LIBC12_SOURCE__
Expand Down Expand Up @@ -354,7 +354,7 @@ sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info,

/*
* If there is already a master thread running, arrange things
* to accomodate for eventual extra signals to wait for
* to accommodate for eventual extra signals to wait for
* and join the sigwaiting list.
*/
if (pt_sigwmaster) {
Expand Down
6 changes: 3 additions & 3 deletions libexec/telnetd/slc.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: slc.c,v 1.14 2005/02/06 05:58:20 perry Exp $ */
/* $NetBSD: slc.c,v 1.15 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1989, 1993
Expand Down Expand Up @@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)slc.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: slc.c,v 1.14 2005/02/06 05:58:20 perry Exp $");
__RCSID("$NetBSD: slc.c,v 1.15 2006/11/24 19:46:58 christos Exp $");
#endif
#endif /* not lint */

Expand Down Expand Up @@ -291,7 +291,7 @@ change_slc(int func, int flag, cc_t val)
/*
* If client is setting a function to NOSUPPORT
* or DEFAULT, then we can easily and directly
* accomodate the request.
* accommodate the request.
*/
if (hislevel == SLC_NOSUPPORT) {
slctab[func].current.flag = flag;
Expand Down
4 changes: 2 additions & 2 deletions regress/lib/libc/ieeefp/testfloat/notes/testfloat-source.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ name has been obsolete for some time.
Limitations

TestFloat as written requires an ISO/ANSI-style C compiler. No attempt has
been made to accomodate compilers that are not ISO-conformant. Older ``K&R-
been made to accommodate compilers that are not ISO-conformant. Older ``K&R-
style'' compilers are not adequate for compiling TestFloat. All testing I
have done so far has been with the GNU C Compiler. Compilation with other
compilers should be possible but has not been tested.
Expand Down Expand Up @@ -168,7 +168,7 @@ intended to be identical to that included with the SoftFloat source.

These are the defaults, but other organizations of the sources are possible.
The TestFloat makefiles and `milieu.h' files (see below) are easily edited
to accomodate other arrangements.
to accommodate other arrangements.


-------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions sbin/gpt/gpt.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" $NetBSD: gpt.8,v 1.2 2006/10/17 09:32:34 wiz Exp $
.\" $NetBSD: gpt.8,v 1.3 2006/11/24 19:46:58 christos Exp $
.\"
.\" Copyright (c) 2002 Marcel Moolenaar
.\" All rights reserved.
Expand Down Expand Up @@ -68,7 +68,7 @@ have an effect on all commands.
The
.Fl p Ar count
option allows the user to change the number of partitions the GPT can
accomodate.
accommodate.
This is used whenever a new GPT is created.
By default, the
.Nm
Expand Down
4 changes: 2 additions & 2 deletions share/doc/papers/beyond4.3/beyond43.ms
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" $NetBSD: beyond43.ms,v 1.4 2003/08/07 10:30:41 agc Exp $
.\" $NetBSD: beyond43.ms,v 1.5 2006/11/24 19:46:58 christos Exp $
.\"
.\" Copyright (c) 1989 The Regents of the University of California.
.\" All rights reserved.
Expand Down Expand Up @@ -150,7 +150,7 @@ The new ``fat'' filesystem allows these limits to be set at filesystem
creation time.
Old kernels will treat the new filesystems as read-only,
and new kernels
will accomodate both formats.
will accommodate both formats.
The filesystem check facility, \fCfsck\fP, has also been modified to check
either type.
.br
Expand Down
4 changes: 2 additions & 2 deletions share/man/man4/man4.sgimips/gio.4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" $NetBSD: gio.4,v 1.12 2006/07/21 10:00:11 rumble Exp $
.\" $NetBSD: gio.4,v 1.13 2006/11/24 19:46:58 christos Exp $
.\"
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
Expand Down Expand Up @@ -84,4 +84,4 @@ HPC1.5-based cards, such as the E++ Ethernet Adapter and GIO32 SCSI
Adapter, must be placed in slot #1 (next to the memory banks).
All other DMA-capable boards must be placed in slot #0 (closest to
the edge of the case).
In either case the other slot may only accomodate a PIO card.
In either case the other slot may only accommodate a PIO card.
4 changes: 2 additions & 2 deletions share/man/man4/systrace.4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" $NetBSD: systrace.4,v 1.13 2005/12/26 19:48:12 perry Exp $
.\" $NetBSD: systrace.4,v 1.14 2006/11/24 19:46:58 christos Exp $
.\" $OpenBSD: systrace.4,v 1.2 2002/06/03 15:44:17 mpech Exp $
.\"
.\" Copyright (c) 2002 CubeSoft Communications, Inc.
Expand Down Expand Up @@ -333,6 +333,6 @@ and then in
.Sh CAVEATS
When creating new policies, if
.Va strp_maxents
is not large enough to accomodate any system calls needed for
is not large enough to accommodate any system calls needed for
fundamental process operations, the traced process will block
forever.
6 changes: 3 additions & 3 deletions sys/arch/alpha/tlsb/mcclock_tlsb.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: mcclock_tlsb.c,v 1.10 2002/10/02 04:06:40 thorpej Exp $ */
/* $NetBSD: mcclock_tlsb.c,v 1.11 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1997 by Matthew Jacob
Expand Down Expand Up @@ -32,7 +32,7 @@

#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */

__KERNEL_RCSID(0, "$NetBSD: mcclock_tlsb.c,v 1.10 2002/10/02 04:06:40 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: mcclock_tlsb.c,v 1.11 2006/11/24 19:46:58 christos Exp $");

#include <sys/param.h>
#include <sys/kernel.h>
Expand Down Expand Up @@ -96,7 +96,7 @@ mcclock_tlsb_attach(parent, self, aux)
struct mcclock_tlsb_softc *sc = (struct mcclock_tlsb_softc *)self;
struct gbus_attach_args *ga = aux;

/* XXX Should be bus.h'd, so we can accomodate the kn7aa. */
/* XXX Should be bus.h'd, so we can accommodate the kn7aa. */
sc->regbase = TLSB_GBUS_BASE + ga->ga_offset;

mcclock_attach(&sc->sc_mcclock, &mcclock_tlsb_busfns);
Expand Down
4 changes: 2 additions & 2 deletions sys/arch/evbppc/conf/files.walnut
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: files.walnut,v 1.11 2006/09/18 22:05:47 gdamore Exp $
# $NetBSD: files.walnut,v 1.12 2006/11/24 19:46:58 christos Exp $
#
# walnut-specific configuration info

Expand Down Expand Up @@ -34,7 +34,7 @@ include "dev/pci/files.pci"
# On-chip PCI bridge
#
# XXX: Move these to a 405gp-specific file and re-think the
# layout of the powerpc/ibm4xx hierarchy to accomodate SoCs.
# layout of the powerpc/ibm4xx hierarchy to accommodate SoCs.
#
device pchb : pcibus
attach pchb at plb
Expand Down
6 changes: 3 additions & 3 deletions sys/arch/shark/shark/scr.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: scr.c,v 1.19 2006/03/29 04:16:47 thorpej Exp $ */
/* $NetBSD: scr.c,v 1.20 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright 1997
Expand Down Expand Up @@ -102,7 +102,7 @@
*/

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.19 2006/03/29 04:16:47 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.20 2006/11/24 19:46:58 christos Exp $");

#include "opt_ddb.h"

Expand Down Expand Up @@ -2417,7 +2417,7 @@ static void ATRSM (struct scr_softc * sc,int cmd)
sc->ATRS = atrsTS;
sc->pIoctlOn->atrLen = 0;
sc->t0ByteParent = ATRSM;
scrTimeout(ATRSM,sc,atrcT3,T_t3 *2); /* by 2 to accomodate 1/2 freq cards */
scrTimeout(ATRSM,sc,atrcT3,T_t3 *2); /* by 2 to accommodate 1/2 freq cards */
t0RecvByteSM(sc,t0rbcStart);
break;

Expand Down
6 changes: 3 additions & 3 deletions sys/arch/sparc/sparc/iommu.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: iommu.c,v 1.83 2005/11/16 03:00:23 uwe Exp $ */
/* $NetBSD: iommu.c,v 1.84 2006/11/24 19:46:58 christos Exp $ */

/*
* Copyright (c) 1996
Expand Down Expand Up @@ -37,7 +37,7 @@
*/

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: iommu.c,v 1.83 2005/11/16 03:00:23 uwe Exp $");
__KERNEL_RCSID(0, "$NetBSD: iommu.c,v 1.84 2006/11/24 19:46:58 christos Exp $");

#include "opt_sparc_arch.h"

Expand Down Expand Up @@ -762,7 +762,7 @@ iommu_dmamem_map(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
/*
* In case the segment has already been loaded by
* iommu_dmamap_load_raw(), find a region of kernel virtual
* addresses that can accomodate our aligment requirements.
* addresses that can accommodate our aligment requirements.
*/
va = _bus_dma_valloc_skewed(size, 0, align,
segs[0].ds_addr & (align - 1));
Expand Down
6 changes: 3 additions & 3 deletions sys/arch/sparc64/sparc64/machdep.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.192 2006/10/22 13:59:14 pooka Exp $ */
/* $NetBSD: machdep.c,v 1.193 2006/11/24 19:46:59 christos Exp $ */

/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
Expand Down Expand Up @@ -78,7 +78,7 @@
*/

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.192 2006/10/22 13:59:14 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.193 2006/11/24 19:46:59 christos Exp $");

#include "opt_ddb.h"
#include "opt_multiprocessor.h"
Expand Down Expand Up @@ -1462,7 +1462,7 @@ _bus_dmamem_map(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
size = round_page(size);

/*
* Find a region of kernel virtual addresses that can accomodate
* Find a region of kernel virtual addresses that can accommodate
* our aligment requirements.
*/
oversize = size + align - PAGE_SIZE;
Expand Down
6 changes: 3 additions & 3 deletions sys/arch/sun3/sun3x/pmap.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.92 2006/09/20 09:35:57 tsutsui Exp $ */
/* $NetBSD: pmap.c,v 1.93 2006/11/24 19:46:59 christos Exp $ */

/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
Expand Down Expand Up @@ -112,7 +112,7 @@
*/

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.92 2006/09/20 09:35:57 tsutsui Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.93 2006/11/24 19:46:59 christos Exp $");

#include "opt_ddb.h"
#include "opt_pmap_debug.h"
Expand Down Expand Up @@ -886,7 +886,7 @@ pmap_bootstrap(vaddr_t nextva)
* (Cacheable is implied by default). Unfortunately, the last bytes
* of kernel text and the first bytes of kernel data will often be
* sharing the same page. Therefore, the last page of kernel text
* has to be mapped as read/write, to accomodate the data.
* has to be mapped as read/write, to accommodate the data.
*/
eva = m68k_trunc_page((vaddr_t)etext);
for (; va < eva; va += PAGE_SIZE, pa += PAGE_SIZE)
Expand Down
Loading

0 comments on commit 7affecf

Please sign in to comment.