Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/occurence/occurrence/
details: https://anonhg.NetBSD.org/src/rev/569c2b304ad4
branches: trunk
changeset: 955436:569c2b304ad4
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Tue Sep 29 02:58:51 2020 +0000
description:
s/occurence/occurrence/
diffstat:
bin/csh/file.c | 6 +++---
distrib/utils/more/more.help | 2 +-
distrib/utils/more/prim.c | 6 +++---
lib/libc/arch/vax/string/index.S | 6 +++---
sbin/disklabel/main.c | 6 +++---
sys/arch/acorn32/stand/lib/riscospart.c | 4 ++--
sys/arch/arm/arm/disksubr_acorn.c | 6 +++---
sys/arch/hp300/dev/fhpib.c | 6 +++---
sys/arch/mips/alchemy/dev/if_aumac.c | 6 +++---
sys/dev/pci/cxgb/cxgb_t3_hw.c | 4 ++--
sys/dev/ppbus/ppbus_base.c | 6 +++---
sys/dev/scsipi/cd.c | 6 +++---
sys/dev/scsipi/if_se.c | 6 +++---
sys/dev/scsipi/ss.c | 6 +++---
sys/fs/filecorefs/filecore_utils.c | 6 +++---
sys/kern/makesyscalls.sh | 4 ++--
sys/netinet/tcp_input.c | 6 +++---
usr.sbin/sysinst/arch/acorn32/md.c | 4 ++--
18 files changed, 48 insertions(+), 48 deletions(-)
diffs (truncated from 438 to 300 lines):
diff -r 1ffb6daad200 -r 569c2b304ad4 bin/csh/file.c
--- a/bin/csh/file.c Tue Sep 29 02:49:55 2020 +0000
+++ b/bin/csh/file.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: file.c,v 1.32 2019/01/05 16:54:00 christos Exp $ */
+/* $NetBSD: file.c,v 1.33 2020/09/29 02:58:51 msaitoh Exp $ */
/*-
* Copyright (c) 1980, 1991, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)file.c 8.2 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: file.c,v 1.32 2019/01/05 16:54:00 christos Exp $");
+__RCSID("$NetBSD: file.c,v 1.33 2020/09/29 02:58:51 msaitoh Exp $");
#endif
#endif /* not lint */
@@ -670,7 +670,7 @@
--str_end; /* wipeout trailing cmd Char */
*str_end = '\0';
/*
- * Find LAST occurence of a delimiter in the inputline. The word start
+ * Find LAST occurrence of a delimiter in the inputline. The word start
* is one Character past it.
*/
for (word_start = str_end; word_start > inputline; --word_start)
diff -r 1ffb6daad200 -r 569c2b304ad4 distrib/utils/more/more.help
--- a/distrib/utils/more/more.help Tue Sep 29 02:49:55 2020 +0000
+++ b/distrib/utils/more/more.help Tue Sep 29 02:58:51 2020 +0000
@@ -24,7 +24,7 @@
/!pattern * Search forward for N-th line NOT containing the pattern.
?pattern * Search backward for N-th line containing the pattern.
?!pattern * Search backward for N-th line NOT containing the pattern.
- n * Repeat previous search (for N-th occurence).
+ n * Repeat previous search (for N-th occurrence).
:a Display the list of files.
E [file] Examine a new file.
diff -r 1ffb6daad200 -r 569c2b304ad4 distrib/utils/more/prim.c
--- a/distrib/utils/more/prim.c Tue Sep 29 02:49:55 2020 +0000
+++ b/distrib/utils/more/prim.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: prim.c,v 1.10 2009/01/24 13:58:21 tsutsui Exp $ */
+/* $NetBSD: prim.c,v 1.11 2020/09/29 02:58:51 msaitoh Exp $ */
/*
* Copyright (c) 1988 Mark Nudelman
@@ -35,7 +35,7 @@
#if 0
static char sccsid[] = "@(#)prim.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: prim.c,v 1.10 2009/01/24 13:58:21 tsutsui Exp $");
+__RCSID("$NetBSD: prim.c,v 1.11 2020/09/29 02:58:51 msaitoh Exp $");
#endif
#endif /* not lint */
@@ -604,7 +604,7 @@
}
/*
- * Search for the n-th occurence of a specified pattern,
+ * Search for the n-th occurrence of a specified pattern,
* either forward or backward.
*/
int
diff -r 1ffb6daad200 -r 569c2b304ad4 lib/libc/arch/vax/string/index.S
--- a/lib/libc/arch/vax/string/index.S Tue Sep 29 02:49:55 2020 +0000
+++ b/lib/libc/arch/vax/string/index.S Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: index.S,v 1.5 2020/01/23 16:34:12 pgoyette Exp $ */
+/* $NetBSD: index.S,v 1.6 2020/09/29 02:58:51 msaitoh Exp $ */
/*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
*/
/*
- * Find the first occurence of c in the string cp.
+ * Find the first occurrence of c in the string cp.
* Return pointer to match or null pointer.
*
* char *
@@ -39,7 +39,7 @@
#include "DEFS.h"
#ifdef LIBC_SCCS
-RCSID("$NetBSD: index.S,v 1.5 2020/01/23 16:34:12 pgoyette Exp $")
+RCSID("$NetBSD: index.S,v 1.6 2020/09/29 02:58:51 msaitoh Exp $")
#endif
/* Alas not quite twice as fast as the generic C version on a uvax2 */
diff -r 1ffb6daad200 -r 569c2b304ad4 sbin/disklabel/main.c
--- a/sbin/disklabel/main.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sbin/disklabel/main.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.54 2020/09/29 02:49:55 msaitoh Exp $ */
+/* $NetBSD: main.c,v 1.55 2020/09/29 02:58:52 msaitoh Exp $ */
/*
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -76,7 +76,7 @@
static char sccsid[] = "@(#)disklabel.c 8.4 (Berkeley) 5/4/95";
/* from static char sccsid[] = "@(#)disklabel.c 1.2 (Symmetric) 11/28/85"; */
#else
-__RCSID("$NetBSD: main.c,v 1.54 2020/09/29 02:49:55 msaitoh Exp $");
+__RCSID("$NetBSD: main.c,v 1.55 2020/09/29 02:58:52 msaitoh Exp $");
#endif
#endif /* not lint */
@@ -1051,7 +1051,7 @@
* end up with a checksum of X. (Do the math; that can be derived
* from the checksum calculation function!) That means that
* blocks which contain bytes which all have the same value will
- * always checksum properly. That's a _very_ unlikely occurence
+ * always checksum properly. That's a _very_ unlikely occurrence
* (probably impossible, actually) for a valid filecore boot block,
* so we treat such blocks as invalid.
*/
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/arch/acorn32/stand/lib/riscospart.c
--- a/sys/arch/acorn32/stand/lib/riscospart.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/arch/acorn32/stand/lib/riscospart.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: riscospart.c,v 1.5 2012/05/14 11:45:16 skrll Exp $ */
+/* $NetBSD: riscospart.c,v 1.6 2020/09/29 02:58:52 msaitoh Exp $ */
/*-
* Copyright (c) 2006 Ben Harris
@@ -102,7 +102,7 @@
* end up with a checksum of X. (Do the math; that can be derived
* from the checksum calculation function!) That means that
* blocks which contain bytes which all have the same value will
- * always checksum properly. That's a _very_ unlikely occurence
+ * always checksum properly. That's a _very_ unlikely occurrence
* (probably impossible, actually) for a valid filecore boot block,
* so we treat such blocks as invalid.
*/
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/arch/arm/arm/disksubr_acorn.c
--- a/sys/arch/arm/arm/disksubr_acorn.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/arch/arm/arm/disksubr_acorn.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: disksubr_acorn.c,v 1.12 2013/03/09 16:02:25 christos Exp $ */
+/* $NetBSD: disksubr_acorn.c,v 1.13 2020/09/29 02:58:52 msaitoh Exp $ */
/*
* Copyright (c) 1998 Christopher G. Demetriou. All rights reserved.
@@ -97,7 +97,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: disksubr_acorn.c,v 1.12 2013/03/09 16:02:25 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: disksubr_acorn.c,v 1.13 2020/09/29 02:58:52 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -134,7 +134,7 @@
* end up with a checksum of X. (Do the math; that can be derived
* from the checksum calculation function!) That means that
* blocks which contain bytes which all have the same value will
- * always checksum properly. That's a _very_ unlikely occurence
+ * always checksum properly. That's a _very_ unlikely occurrence
* (probably impossible, actually) for a valid filecore boot block,
* so we treat such blocks as invalid.
*/
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/arch/hp300/dev/fhpib.c
--- a/sys/arch/hp300/dev/fhpib.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/arch/hp300/dev/fhpib.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fhpib.c,v 1.40 2014/03/24 19:42:58 christos Exp $ */
+/* $NetBSD: fhpib.c,v 1.41 2020/09/29 02:58:52 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fhpib.c,v 1.40 2014/03/24 19:42:58 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fhpib.c,v 1.41 2020/09/29 02:58:52 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -444,7 +444,7 @@
* A DMA read can finish but the device can still be waiting (MAG-tape
* with more data than we're waiting for). This timeout routine
* takes care of that. Somehow, the thing gets hosed. For now, since
- * this should be a very rare occurence, we RESET it.
+ * this should be a very rare occurrence, we RESET it.
*/
static void
fhpibdmadone(void *arg)
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/arch/mips/alchemy/dev/if_aumac.c
--- a/sys/arch/mips/alchemy/dev/if_aumac.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/arch/mips/alchemy/dev/if_aumac.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_aumac.c,v 1.48 2020/01/29 05:30:14 thorpej Exp $ */
+/* $NetBSD: if_aumac.c,v 1.49 2020/09/29 02:58:52 msaitoh Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -46,7 +46,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aumac.c,v 1.48 2020/01/29 05:30:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aumac.c,v 1.49 2020/09/29 02:58:52 msaitoh Exp $");
@@ -634,7 +634,7 @@
int error = 0;
#if 0 /*
- * Missed frames are a semi-frequent occurence with this hardware,
+ * Missed frames are a semi-frequent occurrence with this hardware,
* and reporting of them just makes everything run slower and fills
* the system log. Be silent.
*
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/dev/pci/cxgb/cxgb_t3_hw.c
--- a/sys/dev/pci/cxgb/cxgb_t3_hw.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/dev/pci/cxgb/cxgb_t3_hw.c Tue Sep 29 02:58:51 2020 +0000
@@ -28,7 +28,7 @@
***************************************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cxgb_t3_hw.c,v 1.3 2018/09/03 16:29:32 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cxgb_t3_hw.c,v 1.4 2020/09/29 02:58:52 msaitoh Exp $");
#ifdef CONFIG_DEFINED
@@ -1214,7 +1214,7 @@
* @reg: the interrupt status register to process
* @mask: a mask to apply to the interrupt status
* @acts: table of interrupt actions
- * @stats: statistics counters tracking interrupt occurences
+ * @stats: statistics counters tracking interrupt occurrences
*
* A table driven interrupt handler that applies a set of masks to an
* interrupt status word and performs the corresponding actions if the
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/dev/ppbus/ppbus_base.c
--- a/sys/dev/ppbus/ppbus_base.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/dev/ppbus/ppbus_base.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ppbus_base.c,v 1.20 2014/10/14 01:04:39 christos Exp $ */
+/* $NetBSD: ppbus_base.c,v 1.21 2020/09/29 02:58:52 msaitoh Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999 Nicolas Souchu
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ppbus_base.c,v 1.20 2014/10/14 01:04:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppbus_base.c,v 1.21 2020/09/29 02:58:52 msaitoh Exp $");
#include "opt_ppbus_1284.h"
#include "opt_ppbus.h"
@@ -472,7 +472,7 @@
#endif
/*
- * Search the first occurence of a token within a string
+ * Search the first occurrence of a token within a string
* XXX should use strxxx() calls
*/
static char *
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/dev/scsipi/cd.c
--- a/sys/dev/scsipi/cd.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/dev/scsipi/cd.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cd.c,v 1.345 2020/09/29 02:49:56 msaitoh Exp $ */
+/* $NetBSD: cd.c,v 1.346 2020/09/29 02:58:52 msaitoh Exp $ */
/*-
* Copyright (c) 1998, 2001, 2003, 2004, 2005, 2008 The NetBSD Foundation,
@@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cd.c,v 1.345 2020/09/29 02:49:56 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cd.c,v 1.346 2020/09/29 02:58:52 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -550,7 +550,7 @@
/*
* close the device.. only called if we are the LAST
- * occurence of an open device
+ * occurrence of an open device
*/
static int
cdclose(dev_t dev, int flag, int fmt, struct lwp *l)
diff -r 1ffb6daad200 -r 569c2b304ad4 sys/dev/scsipi/if_se.c
--- a/sys/dev/scsipi/if_se.c Tue Sep 29 02:49:55 2020 +0000
+++ b/sys/dev/scsipi/if_se.c Tue Sep 29 02:58:51 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_se.c,v 1.111 2020/07/27 15:41:03 jdc Exp $ */
+/* $NetBSD: if_se.c,v 1.112 2020/09/29 02:58:52 msaitoh Exp $ */
Home |
Main Index |
Thread Index |
Old Index