Module Name: src
Committed By: msaitoh
Date: Tue Sep 29 02:58:53 UTC 2020
Modified Files:
src/bin/csh: file.c
src/distrib/utils/more: more.help prim.c
src/lib/libc/arch/vax/string: index.S
src/sbin/disklabel: main.c
src/sys/arch/acorn32/stand/lib: riscospart.c
src/sys/arch/arm/arm: disksubr_acorn.c
src/sys/arch/hp300/dev: fhpib.c
src/sys/arch/mips/alchemy/dev: if_aumac.c
src/sys/dev/pci/cxgb: cxgb_t3_hw.c
src/sys/dev/ppbus: ppbus_base.c
src/sys/dev/scsipi: cd.c if_se.c ss.c
src/sys/fs/filecorefs: filecore_utils.c
src/sys/kern: makesyscalls.sh
src/sys/netinet: tcp_input.c
src/usr.sbin/sysinst/arch/acorn32: md.c
Log Message:
s/occurence/occurrence/
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/bin/csh/file.c
cvs rdiff -u -r1.2 -r1.3 src/distrib/utils/more/more.help
cvs rdiff -u -r1.10 -r1.11 src/distrib/utils/more/prim.c
cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/vax/string/index.S
cvs rdiff -u -r1.54 -r1.55 src/sbin/disklabel/main.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/acorn32/stand/lib/riscospart.c
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/arm/disksubr_acorn.c
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/hp300/dev/fhpib.c
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/mips/alchemy/dev/if_aumac.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/pci/cxgb/cxgb_t3_hw.c
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/ppbus/ppbus_base.c
cvs rdiff -u -r1.345 -r1.346 src/sys/dev/scsipi/cd.c
cvs rdiff -u -r1.111 -r1.112 src/sys/dev/scsipi/if_se.c
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/scsipi/ss.c
cvs rdiff -u -r1.11 -r1.12 src/sys/fs/filecorefs/filecore_utils.c
cvs rdiff -u -r1.181 -r1.182 src/sys/kern/makesyscalls.sh
cvs rdiff -u -r1.423 -r1.424 src/sys/netinet/tcp_input.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/sysinst/arch/acorn32/md.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/csh/file.c
diff -u src/bin/csh/file.c:1.32 src/bin/csh/file.c:1.33
--- src/bin/csh/file.c:1.32 Sat Jan 5 16:54:00 2019
+++ src/bin/csh/file.c Tue Sep 29 02:58:51 2020
@@ -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 @@ tenex(Char *inputline, size_t inputline_
--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)
Index: src/distrib/utils/more/more.help
diff -u src/distrib/utils/more/more.help:1.2 src/distrib/utils/more/more.help:1.3
--- src/distrib/utils/more/more.help:1.2 Mon Aug 20 12:00:47 2001
+++ src/distrib/utils/more/more.help Tue Sep 29 02:58:51 2020
@@ -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.
Index: src/distrib/utils/more/prim.c
diff -u src/distrib/utils/more/prim.c:1.10 src/distrib/utils/more/prim.c:1.11
--- src/distrib/utils/more/prim.c:1.10 Sat Jan 24 13:58:21 2009
+++ src/distrib/utils/more/prim.c Tue Sep 29 02:58:51 2020
@@ -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 @@ get_back_scroll()
}
/*
- * 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
Index: src/lib/libc/arch/vax/string/index.S
diff -u src/lib/libc/arch/vax/string/index.S:1.5 src/lib/libc/arch/vax/string/index.S:1.6
--- src/lib/libc/arch/vax/string/index.S:1.5 Thu Jan 23 16:34:12 2020
+++ src/lib/libc/arch/vax/string/index.S Tue Sep 29 02:58:51 2020
@@ -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 */
Index: src/sbin/disklabel/main.c
diff -u src/sbin/disklabel/main.c:1.54 src/sbin/disklabel/main.c:1.55
--- src/sbin/disklabel/main.c:1.54 Tue Sep 29 02:49:55 2020
+++ src/sbin/disklabel/main.c Tue Sep 29 02:58:52 2020
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 19
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 @@ writelabel_mbr(int f, u_int sector)
* 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.
*/
Index: src/sys/arch/acorn32/stand/lib/riscospart.c
diff -u src/sys/arch/acorn32/stand/lib/riscospart.c:1.5 src/sys/arch/acorn32/stand/lib/riscospart.c:1.6
--- src/sys/arch/acorn32/stand/lib/riscospart.c:1.5 Mon May 14 11:45:16 2012
+++ src/sys/arch/acorn32/stand/lib/riscospart.c Tue Sep 29 02:58:52 2020
@@ -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.
*/
Index: src/sys/arch/arm/arm/disksubr_acorn.c
diff -u src/sys/arch/arm/arm/disksubr_acorn.c:1.12 src/sys/arch/arm/arm/disksubr_acorn.c:1.13
--- src/sys/arch/arm/arm/disksubr_acorn.c:1.12 Sat Mar 9 16:02:25 2013
+++ src/sys/arch/arm/arm/disksubr_acorn.c Tue Sep 29 02:58:52 2020
@@ -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 @@ static int filecore_checksum(u_char *);
* 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.
*/
Index: src/sys/arch/hp300/dev/fhpib.c
diff -u src/sys/arch/hp300/dev/fhpib.c:1.40 src/sys/arch/hp300/dev/fhpib.c:1.41
--- src/sys/arch/hp300/dev/fhpib.c:1.40 Mon Mar 24 19:42:58 2014
+++ src/sys/arch/hp300/dev/fhpib.c Tue Sep 29 02:58:52 2020
@@ -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 @@ fhpibgo(struct hpibbus_softc *hs, int sl
* 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)
Index: src/sys/arch/mips/alchemy/dev/if_aumac.c
diff -u src/sys/arch/mips/alchemy/dev/if_aumac.c:1.48 src/sys/arch/mips/alchemy/dev/if_aumac.c:1.49
--- src/sys/arch/mips/alchemy/dev/if_aumac.c:1.48 Wed Jan 29 05:30:14 2020
+++ src/sys/arch/mips/alchemy/dev/if_aumac.c Tue Sep 29 02:58:52 2020
@@ -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 @@ aumac_rxintr(struct aumac_softc *sc)
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.
*
Index: src/sys/dev/pci/cxgb/cxgb_t3_hw.c
diff -u src/sys/dev/pci/cxgb/cxgb_t3_hw.c:1.3 src/sys/dev/pci/cxgb/cxgb_t3_hw.c:1.4
--- src/sys/dev/pci/cxgb/cxgb_t3_hw.c:1.3 Mon Sep 3 16:29:32 2018
+++ src/sys/dev/pci/cxgb/cxgb_t3_hw.c Tue Sep 29 02:58:52 2020
@@ -28,7 +28,7 @@ POSSIBILITY OF SUCH DAMAGE.
***************************************************************************/
#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 @@ struct intr_info {
* @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
Index: src/sys/dev/ppbus/ppbus_base.c
diff -u src/sys/dev/ppbus/ppbus_base.c:1.20 src/sys/dev/ppbus/ppbus_base.c:1.21
--- src/sys/dev/ppbus/ppbus_base.c:1.20 Tue Oct 14 01:04:39 2014
+++ src/sys/dev/ppbus/ppbus_base.c Tue Sep 29 02:58:52 2020
@@ -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 @@ static char *pnp_classes[] = {
#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 *
Index: src/sys/dev/scsipi/cd.c
diff -u src/sys/dev/scsipi/cd.c:1.345 src/sys/dev/scsipi/cd.c:1.346
--- src/sys/dev/scsipi/cd.c:1.345 Tue Sep 29 02:49:56 2020
+++ src/sys/dev/scsipi/cd.c Tue Sep 29 02:58:52 2020
@@ -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 @@ cd_lastclose(device_t self)
/*
* 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)
Index: src/sys/dev/scsipi/if_se.c
diff -u src/sys/dev/scsipi/if_se.c:1.111 src/sys/dev/scsipi/if_se.c:1.112
--- src/sys/dev/scsipi/if_se.c:1.111 Mon Jul 27 15:41:03 2020
+++ src/sys/dev/scsipi/if_se.c Tue Sep 29 02:58:52 2020
@@ -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 $ */
/*
* Copyright (c) 1997 Ian W. Dall <[email protected]>
@@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.111 2020/07/27 15:41:03 jdc Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.112 2020/09/29 02:58:52 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -1222,7 +1222,7 @@ seopen(dev_t dev, int flag, int fmt, str
/*
* close the device.. only called if we are the LAST
- * occurence of an open device
+ * occurrence of an open device
*/
int
seclose(dev_t dev, int flag, int fmt, struct lwp *l)
Index: src/sys/dev/scsipi/ss.c
diff -u src/sys/dev/scsipi/ss.c:1.89 src/sys/dev/scsipi/ss.c:1.90
--- src/sys/dev/scsipi/ss.c:1.89 Sat Jun 17 22:35:50 2017
+++ src/sys/dev/scsipi/ss.c Tue Sep 29 02:58:52 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: ss.c,v 1.89 2017/06/17 22:35:50 mlelstv Exp $ */
+/* $NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $ */
/*
* Copyright (c) 1995 Kenneth Stailey. All rights reserved.
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.89 2017/06/17 22:35:50 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -298,7 +298,7 @@ bad:
/*
* close the device.. only called if we are the LAST
- * occurence of an open device
+ * occurrence of an open device
*/
static int
ssclose(dev_t dev, int flag, int mode, struct lwp *l)
Index: src/sys/fs/filecorefs/filecore_utils.c
diff -u src/sys/fs/filecorefs/filecore_utils.c:1.11 src/sys/fs/filecorefs/filecore_utils.c:1.12
--- src/sys/fs/filecorefs/filecore_utils.c:1.11 Thu Dec 20 08:03:42 2012
+++ src/sys/fs/filecorefs/filecore_utils.c Tue Sep 29 02:58:52 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: filecore_utils.c,v 1.11 2012/12/20 08:03:42 hannken Exp $ */
+/* $NetBSD: filecore_utils.c,v 1.12 2020/09/29 02:58:52 msaitoh Exp $ */
/*-
* Copyright (c) 1994 The Regents of the University of California.
@@ -102,7 +102,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filecore_utils.c,v 1.11 2012/12/20 08:03:42 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filecore_utils.c,v 1.12 2020/09/29 02:58:52 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -146,7 +146,7 @@ __KERNEL_RCSID(0, "$NetBSD: filecore_uti
* 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.
*/
Index: src/sys/kern/makesyscalls.sh
diff -u src/sys/kern/makesyscalls.sh:1.181 src/sys/kern/makesyscalls.sh:1.182
--- src/sys/kern/makesyscalls.sh:1.181 Thu Jun 11 03:25:35 2020
+++ src/sys/kern/makesyscalls.sh Tue Sep 29 02:58:53 2020
@@ -1,4 +1,4 @@
-# $NetBSD: makesyscalls.sh,v 1.181 2020/06/11 03:25:35 dholland Exp $
+# $NetBSD: makesyscalls.sh,v 1.182 2020/09/29 02:58:53 msaitoh Exp $
#
# Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
# All rights reserved.
@@ -719,7 +719,7 @@ function printproto(wrap) {
return
# accumulate fbases we have seen. we want the last
- # occurence for the default __RENAME()
+ # occurrence for the default __RENAME()
seen = funcseen[realname]
funcseen[realname] = rumpfname
# special case for mknod as type of last argument changed from
Index: src/sys/netinet/tcp_input.c
diff -u src/sys/netinet/tcp_input.c:1.423 src/sys/netinet/tcp_input.c:1.424
--- src/sys/netinet/tcp_input.c:1.423 Sun Sep 13 11:47:12 2020
+++ src/sys/netinet/tcp_input.c Tue Sep 29 02:58:53 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: tcp_input.c,v 1.423 2020/09/13 11:47:12 roy Exp $ */
+/* $NetBSD: tcp_input.c,v 1.424 2020/09/29 02:58:53 msaitoh Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -148,7 +148,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.423 2020/09/13 11:47:12 roy Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.424 2020/09/29 02:58:53 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -4564,7 +4564,7 @@ syn_cache_respond(struct syn_cache *sc)
* Congestion is most likely to occur in
* the server-to-client direction. As a result,
* setting an ECN-capable codepoint in SYN/ACK
- * packets can reduce the occurence of three-second
+ * packets can reduce the occurrence of three-second
* retransmit timeouts resulting from the drop
* of SYN/ACK packets."
*
Index: src/usr.sbin/sysinst/arch/acorn32/md.c
diff -u src/usr.sbin/sysinst/arch/acorn32/md.c:1.5 src/usr.sbin/sysinst/arch/acorn32/md.c:1.6
--- src/usr.sbin/sysinst/arch/acorn32/md.c:1.5 Sat Jul 13 17:13:36 2019
+++ src/usr.sbin/sysinst/arch/acorn32/md.c Tue Sep 29 02:58:53 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: md.c,v 1.5 2019/07/13 17:13:36 martin Exp $ */
+/* $NetBSD: md.c,v 1.6 2020/09/29 02:58:53 msaitoh Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -304,7 +304,7 @@ md_update(struct install_partition_desc
* 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.
*/