Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/existance/existence/ in comment.
details: https://anonhg.NetBSD.org/src/rev/f70f5e2e7376
branches: trunk
changeset: 1026693:f70f5e2e7376
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Sun Dec 05 04:42:54 2021 +0000
description:
s/existance/existence/ in comment.
diffstat:
bin/sh/parser.c | 6 +++---
bin/test/test.c | 6 +++---
sys/arch/arm/include/undefined.h | 4 ++--
sys/netinet6/in6.c | 6 +++---
usr.sbin/sysinst/arch/amiga/md.h | 4 ++--
usr.sbin/sysinst/arch/x68k/md.h | 4 ++--
6 files changed, 15 insertions(+), 15 deletions(-)
diffs (135 lines):
diff -r 983c2c729a65 -r f70f5e2e7376 bin/sh/parser.c
--- a/bin/sh/parser.c Sun Dec 05 04:39:49 2021 +0000
+++ b/bin/sh/parser.c Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: parser.c,v 1.175 2021/11/16 11:25:44 kre Exp $ */
+/* $NetBSD: parser.c,v 1.176 2021/12/05 04:42:54 msaitoh Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
#else
-__RCSID("$NetBSD: parser.c,v 1.175 2021/11/16 11:25:44 kre Exp $");
+__RCSID("$NetBSD: parser.c,v 1.176 2021/12/05 04:42:54 msaitoh Exp $");
#endif
#endif /* not lint */
@@ -1355,7 +1355,7 @@
#define PARSEARITH() {goto parsearith; parsearith_return:;}
/*
- * The following macros all assume the existance of a local var "stack"
+ * The following macros all assume the existence of a local var "stack"
* which contains a pointer to the current struct stackstate
*/
diff -r 983c2c729a65 -r f70f5e2e7376 bin/test/test.c
--- a/bin/test/test.c Sun Dec 05 04:39:49 2021 +0000
+++ b/bin/test/test.c Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: test.c,v 1.43 2018/09/13 22:00:58 kre Exp $ */
+/* $NetBSD: test.c,v 1.44 2021/12/05 04:42:55 msaitoh Exp $ */
/*
* test(1); version 7-like -- author Erik Baalbergen
@@ -12,7 +12,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: test.c,v 1.43 2018/09/13 22:00:58 kre Exp $");
+__RCSID("$NetBSD: test.c,v 1.44 2021/12/05 04:42:55 msaitoh Exp $");
#endif
#include <sys/stat.h>
@@ -661,7 +661,7 @@
* wording in 1003.2-1992, not the other way around. I think 1003.2b goes much
* too far the wrong way without any valid rationale and that it's best if we
* stick with 1003.2-1992 and test the flags, and not mimic the behaviour of
- * open() since we already know very well how it will work -- existance of the
+ * open() since we already know very well how it will work -- existence of the
* file is all that matters to open() for root.
*
* Unfortunately the SVID is no help at all (which is, I guess, partly why
diff -r 983c2c729a65 -r f70f5e2e7376 sys/arch/arm/include/undefined.h
--- a/sys/arch/arm/include/undefined.h Sun Dec 05 04:39:49 2021 +0000
+++ b/sys/arch/arm/include/undefined.h Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: undefined.h,v 1.15 2021/10/31 16:23:47 skrll Exp $ */
+/* $NetBSD: undefined.h,v 1.16 2021/12/05 04:42:55 msaitoh Exp $ */
/*
* Copyright (c) 1995-1996 Mark Brinicombe.
@@ -94,7 +94,7 @@
/*
* Handlers installed using install_coproc_handler_static shouldn't be
- * removed. We special case the 'test vfp existance' handler.
+ * removed. We special case the 'test vfp existence' handler.
*/
void install_coproc_handler_static(int, struct undefined_handler *);
diff -r 983c2c729a65 -r f70f5e2e7376 sys/netinet6/in6.c
--- a/sys/netinet6/in6.c Sun Dec 05 04:39:49 2021 +0000
+++ b/sys/netinet6/in6.c Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: in6.c,v 1.284 2021/12/05 03:12:14 msaitoh Exp $ */
+/* $NetBSD: in6.c,v 1.285 2021/12/05 04:42:55 msaitoh Exp $ */
/* $KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $ */
/*
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.284 2021/12/05 03:12:14 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.285 2021/12/05 04:42:55 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -273,7 +273,7 @@
if ((error = rtinit(&ia->ia_ifa, RTM_ADD, RTF_UP | flags)) == 0)
ia->ia_flags |= IFA_ROUTE;
else if (error == EEXIST)
- /* Existance of the route is not an error. */
+ /* Existence of the route is not an error. */
error = 0;
return error;
diff -r 983c2c729a65 -r f70f5e2e7376 usr.sbin/sysinst/arch/amiga/md.h
--- a/usr.sbin/sysinst/arch/amiga/md.h Sun Dec 05 04:39:49 2021 +0000
+++ b/usr.sbin/sysinst/arch/amiga/md.h Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: md.h,v 1.5 2019/12/11 19:25:50 martin Exp $ */
+/* $NetBSD: md.h,v 1.6 2021/12/05 04:42:55 msaitoh Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -72,7 +72,7 @@
/*
* We rely on kernel support to translate native RDB partitions
- * to in-core disklabels, so we can not check for existance of "real"
+ * to in-core disklabels, so we can not check for existence of "real"
* disklabels on-disk before offering disklabel partitions.
*/
#define DISKLABEL_NO_ONDISK_VERIFY 1
diff -r 983c2c729a65 -r f70f5e2e7376 usr.sbin/sysinst/arch/x68k/md.h
--- a/usr.sbin/sysinst/arch/x68k/md.h Sun Dec 05 04:39:49 2021 +0000
+++ b/usr.sbin/sysinst/arch/x68k/md.h Sun Dec 05 04:42:54 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: md.h,v 1.4 2019/12/09 19:16:53 martin Exp $ */
+/* $NetBSD: md.h,v 1.5 2021/12/05 04:42:55 msaitoh Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -92,7 +92,7 @@
/*
* We rely on kernel support to translate Human68k partitions
- * to in-core disklabels, so we can not check for existance of "real"
+ * to in-core disklabels, so we can not check for existence of "real"
* disklabels on-disk before offering disklabel partitions.
*/
#define DISKLABEL_NO_ONDISK_VERIFY 1
Home |
Main Index |
Thread Index |
Old Index