Module Name: src
Committed By: andvar
Date: Fri Mar 4 21:12:04 UTC 2022
Modified Files:
src/sys/arch/evbmips/conf: files.sbmips
src/sys/arch/sbmips/conf: files.sbmips
src/sys/kern: kern_entropy.c
src/usr.bin/rpcgen: rpc_main.c
Log Message:
fix few typos in comments for word "because".
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbmips/conf/files.sbmips
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/sbmips/conf/files.sbmips
cvs rdiff -u -r1.33 -r1.34 src/sys/kern/kern_entropy.c
cvs rdiff -u -r1.44 -r1.45 src/usr.bin/rpcgen/rpc_main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/evbmips/conf/files.sbmips
diff -u src/sys/arch/evbmips/conf/files.sbmips:1.4 src/sys/arch/evbmips/conf/files.sbmips:1.5
--- src/sys/arch/evbmips/conf/files.sbmips:1.4 Wed Aug 21 04:17:40 2019
+++ src/sys/arch/evbmips/conf/files.sbmips Fri Mar 4 21:12:03 2022
@@ -1,4 +1,4 @@
-# $NetBSD: files.sbmips,v 1.4 2019/08/21 04:17:40 msaitoh Exp $
+# $NetBSD: files.sbmips,v 1.5 2022/03/04 21:12:03 andvar Exp $
maxpartitions 8
@@ -89,7 +89,7 @@ file dev/isa/i82365_isasubr.c pcic_isa |
#
# Machine-independent PCMCIA drivers
#
-#XXXCGD can't yet becaue needs fdc include "dev/pcmcia/files.pcmcia"
+#XXXCGD can't yet because needs fdc include "dev/pcmcia/files.pcmcia"
#
# Machine-independent USB device support
#
Index: src/sys/arch/sbmips/conf/files.sbmips
diff -u src/sys/arch/sbmips/conf/files.sbmips:1.17 src/sys/arch/sbmips/conf/files.sbmips:1.18
--- src/sys/arch/sbmips/conf/files.sbmips:1.17 Wed Aug 21 04:17:41 2019
+++ src/sys/arch/sbmips/conf/files.sbmips Fri Mar 4 21:12:03 2022
@@ -1,4 +1,4 @@
-# $NetBSD: files.sbmips,v 1.17 2019/08/21 04:17:41 msaitoh Exp $
+# $NetBSD: files.sbmips,v 1.18 2022/03/04 21:12:03 andvar Exp $
maxpartitions 8
@@ -90,7 +90,7 @@ file dev/isa/i82365_isasubr.c pcic_isa |
#
# Machine-independent PCMCIA drivers
#
-#XXXCGD can't yet becaue needs fdc include "dev/pcmcia/files.pcmcia"
+#XXXCGD can't yet because needs fdc include "dev/pcmcia/files.pcmcia"
#
# Machine-independent USB device support
#
Index: src/sys/kern/kern_entropy.c
diff -u src/sys/kern/kern_entropy.c:1.33 src/sys/kern/kern_entropy.c:1.34
--- src/sys/kern/kern_entropy.c:1.33 Sun Sep 26 15:10:51 2021
+++ src/sys/kern/kern_entropy.c Fri Mar 4 21:12:03 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_entropy.c,v 1.33 2021/09/26 15:10:51 thorpej Exp $ */
+/* $NetBSD: kern_entropy.c,v 1.34 2022/03/04 21:12:03 andvar Exp $ */
/*-
* Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -75,7 +75,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_entropy.c,v 1.33 2021/09/26 15:10:51 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_entropy.c,v 1.34 2022/03/04 21:12:03 andvar Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -126,7 +126,7 @@ __KERNEL_RCSID(0, "$NetBSD: kern_entropy
* Per-CPU entropy state. The pool is allocated separately
* because percpu(9) sometimes moves per-CPU objects around
* without zeroing them, which would lead to unwanted copies of
- * sensitive secrets. The evcnt is allocated separately becuase
+ * sensitive secrets. The evcnt is allocated separately because
* evcnt(9) assumes it stays put in memory.
*/
struct entropy_cpu {
Index: src/usr.bin/rpcgen/rpc_main.c
diff -u src/usr.bin/rpcgen/rpc_main.c:1.44 src/usr.bin/rpcgen/rpc_main.c:1.45
--- src/usr.bin/rpcgen/rpc_main.c:1.44 Sun Sep 20 16:57:13 2015
+++ src/usr.bin/rpcgen/rpc_main.c Fri Mar 4 21:12:04 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: rpc_main.c,v 1.44 2015/09/20 16:57:13 kamil Exp $ */
+/* $NetBSD: rpc_main.c,v 1.45 2022/03/04 21:12:04 andvar Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI";
#else
-__RCSID("$NetBSD: rpc_main.c,v 1.44 2015/09/20 16:57:13 kamil Exp $");
+__RCSID("$NetBSD: rpc_main.c,v 1.45 2022/03/04 21:12:04 andvar Exp $");
#endif
#endif
@@ -527,7 +527,7 @@ generate_guard(const char *pathname)
}
/*
- * Can't have a '_' or '.' at the front of a symbol name, beacuse it
+ * Can't have a '_' or '.' at the front of a symbol name, because it
* will end up as "__".
*
* Prefix it with "RPCGEN_".