Module Name: src Committed By: msaitoh Date: Sun Dec 5 02:52:17 UTC 2021
Modified Files: src/bin/pax: ar_subs.c src/common/lib/libprop: prop_dictionary.c src/sys/dev/pci: if_bnx.c src/usr.sbin/sysinst: defs.h part_edit.c Log Message: s/exisit/exist/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/bin/pax/ar_subs.c cvs rdiff -u -r1.42 -r1.43 src/common/lib/libprop/prop_dictionary.c cvs rdiff -u -r1.109 -r1.110 src/sys/dev/pci/if_bnx.c cvs rdiff -u -r1.75 -r1.76 src/usr.sbin/sysinst/defs.h cvs rdiff -u -r1.25 -r1.26 src/usr.sbin/sysinst/part_edit.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/pax/ar_subs.c diff -u src/bin/pax/ar_subs.c:1.56 src/bin/pax/ar_subs.c:1.57 --- src/bin/pax/ar_subs.c:1.56 Wed Aug 31 16:24:54 2011 +++ src/bin/pax/ar_subs.c Sun Dec 5 02:52:17 2021 @@ -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 @@ copy(void) } /* - * 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))) { Index: src/common/lib/libprop/prop_dictionary.c diff -u src/common/lib/libprop/prop_dictionary.c:1.42 src/common/lib/libprop/prop_dictionary.c:1.43 --- src/common/lib/libprop/prop_dictionary.c:1.42 Sat Jun 6 21:25:59 2020 +++ src/common/lib/libprop/prop_dictionary.c Sun Dec 5 02:52:17 2021 @@ -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_get_keysym(prop_dictiona /* * 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) Index: src/sys/dev/pci/if_bnx.c diff -u src/sys/dev/pci/if_bnx.c:1.109 src/sys/dev/pci/if_bnx.c:1.110 --- src/sys/dev/pci/if_bnx.c:1.109 Fri Aug 13 20:26:07 2021 +++ src/sys/dev/pci/if_bnx.c Sun Dec 5 02:52:17 2021 @@ -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 @@ bnx_rx_intr(struct bnx_softc *sc) 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 @@ allmulti: 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); Index: src/usr.sbin/sysinst/defs.h diff -u src/usr.sbin/sysinst/defs.h:1.75 src/usr.sbin/sysinst/defs.h:1.76 --- src/usr.sbin/sysinst/defs.h:1.75 Fri Oct 8 15:59:55 2021 +++ src/usr.sbin/sysinst/defs.h Sun Dec 5 02:52:17 2021 @@ -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 @@ const char *getfslabelname(uint, uint); /* 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 */ Index: src/usr.sbin/sysinst/part_edit.c diff -u src/usr.sbin/sysinst/part_edit.c:1.25 src/usr.sbin/sysinst/part_edit.c:1.26 --- src/usr.sbin/sysinst/part_edit.c:1.25 Sun Jan 31 22:45:46 2021 +++ src/usr.sbin/sysinst/part_edit.c Sun Dec 5 02:52:17 2021 @@ -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 @@ outer_fill_part_menu_opts(const struct d 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;