Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src s/exisit/exist/ in comment.



details:   https://anonhg.NetBSD.org/src/rev/0df339e5ce10
branches:  trunk
changeset: 1026664:0df339e5ce10
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sun Dec 05 02:52:17 2021 +0000

description:
s/exisit/exist/ in comment.

diffstat:

 bin/pax/ar_subs.c                    |  6 +++---
 common/lib/libprop/prop_dictionary.c |  4 ++--
 sys/dev/pci/if_bnx.c                 |  8 ++++----
 usr.sbin/sysinst/defs.h              |  4 ++--
 usr.sbin/sysinst/part_edit.c         |  4 ++--
 5 files changed, 13 insertions(+), 13 deletions(-)

diffs (117 lines):

diff -r c24219a83ca6 -r 0df339e5ce10 bin/pax/ar_subs.c
--- a/bin/pax/ar_subs.c Sun Dec 05 02:49:21 2021 +0000
+++ b/bin/pax/ar_subs.c Sun Dec 05 02:52:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ar_subs.c,v 1.56 2011/08/31 16:24:54 plunky Exp $      */
+/*     $NetBSD: ar_subs.c,v 1.57 2021/12/05 02:52:17 msaitoh Exp $     */
 
 /*-
  * Copyright (c) 1992 Keith Muller.
@@ -42,7 +42,7 @@
 #if 0
 static char sccsid[] = "@(#)ar_subs.c  8.2 (Berkeley) 4/18/94";
 #else
-__RCSID("$NetBSD: ar_subs.c,v 1.56 2011/08/31 16:24:54 plunky Exp $");
+__RCSID("$NetBSD: ar_subs.c,v 1.57 2021/12/05 02:52:17 msaitoh Exp $");
 #endif
 #endif /* not lint */
 
@@ -1053,7 +1053,7 @@
                }
 
                /*
-                * Non standard -Y and -Z flag. When the exisiting file is
+                * Non standard -Y and -Z flag. When the existing file is
                 * same age or newer skip
                 */
                if ((Yflag || Zflag) && ((lstat(arcn->name, &sb) == 0))) {
diff -r c24219a83ca6 -r 0df339e5ce10 common/lib/libprop/prop_dictionary.c
--- a/common/lib/libprop/prop_dictionary.c      Sun Dec 05 02:49:21 2021 +0000
+++ b/common/lib/libprop/prop_dictionary.c      Sun Dec 05 02:52:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: prop_dictionary.c,v 1.42 2020/06/06 21:25:59 thorpej Exp $     */
+/*     $NetBSD: prop_dictionary.c,v 1.43 2021/12/05 02:52:17 msaitoh Exp $     */
 
 /*-
  * Copyright (c) 2006, 2007, 2020 The NetBSD Foundation, Inc.
@@ -970,7 +970,7 @@
 /*
  * prop_dictionary_set --
  *     Store a reference to an object at with the specified key.
- *     If the key already exisit, the original object is released.
+ *     If the key already exist, the original object is released.
  */
 bool
 prop_dictionary_set(prop_dictionary_t pd, const char *key, prop_object_t po)
diff -r c24219a83ca6 -r 0df339e5ce10 sys/dev/pci/if_bnx.c
--- a/sys/dev/pci/if_bnx.c      Sun Dec 05 02:49:21 2021 +0000
+++ b/sys/dev/pci/if_bnx.c      Sun Dec 05 02:52:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_bnx.c,v 1.109 2021/08/13 20:26:07 andvar Exp $      */
+/*     $NetBSD: if_bnx.c,v 1.110 2021/12/05 02:52:17 msaitoh Exp $     */
 /*     $OpenBSD: if_bnx.c,v 1.101 2013/03/28 17:21:44 brad Exp $       */
 
 /*-
@@ -35,7 +35,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/sys/dev/bce/if_bce.c,v 1.3 2006/04/13 14:12:26 ru Exp $");
 #endif
-__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.109 2021/08/13 20:26:07 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.110 2021/12/05 02:52:17 msaitoh Exp $");
 
 /*
  * The following controllers are supported by this driver:
@@ -4701,7 +4701,7 @@
 
                                if_statinc(ifp, if_ierrors);
 
-                               /* Try and reuse the exisitng mbuf. */
+                               /* Try and reuse the existing mbuf. */
                                if (bnx_add_buf(sc, m, &sw_prod,
                                    &sw_chain_prod, &sw_prod_bseq)) {
                                        DBRUNIF(1, bnx_breakpoint(sc));
@@ -5647,7 +5647,7 @@
                REG_WR(sc, BNX_EMAC_RX_MODE, rx_mode);
        }
 
-       /* Disable and clear the exisitng sort before enabling a new sort. */
+       /* Disable and clear the existing sort before enabling a new sort. */
        REG_WR(sc, BNX_RPM_SORT_USER0, 0x0);
        REG_WR(sc, BNX_RPM_SORT_USER0, sort_mode);
        REG_WR(sc, BNX_RPM_SORT_USER0, sort_mode | BNX_RPM_SORT_USER0_ENA);
diff -r c24219a83ca6 -r 0df339e5ce10 usr.sbin/sysinst/defs.h
--- a/usr.sbin/sysinst/defs.h   Sun Dec 05 02:49:21 2021 +0000
+++ b/usr.sbin/sysinst/defs.h   Sun Dec 05 02:52:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: defs.h,v 1.75 2021/10/08 15:59:55 martin Exp $ */
+/*     $NetBSD: defs.h,v 1.76 2021/12/05 02:52:17 msaitoh Exp $        */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -110,7 +110,7 @@
 
 /* for bsddisklabel.c */
 enum layout_type {
-       LY_KEEPEXISTING,        /* keep exisiting partitions */
+       LY_KEEPEXISTING,        /* keep existing partitions */
        LY_OTHERSCHEME,         /* delete all, select new partitioning scheme */
        LY_SETSIZES,            /* edit sizes */
        LY_USEDEFAULT,          /* use default sizes */
diff -r c24219a83ca6 -r 0df339e5ce10 usr.sbin/sysinst/part_edit.c
--- a/usr.sbin/sysinst/part_edit.c      Sun Dec 05 02:49:21 2021 +0000
+++ b/usr.sbin/sysinst/part_edit.c      Sun Dec 05 02:52:17 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: part_edit.c,v 1.25 2021/01/31 22:45:46 rillig Exp $ */
+/*     $NetBSD: part_edit.c,v 1.26 2021/12/05 02:52:17 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -838,7 +838,7 @@
                return NULL;
        }
 
-       /* add all exisiting partitions */
+       /* add all existing partitions */
        for (op = opts, i = 0; i < parts->num_part && i < (num_opts-2);
            op++, i++) {
                op->opt_flags = OPT_SUB;



Home | Main Index | Thread Index | Old Index