Source-Changes-HG archive

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

[src/trunk]: src s/sould/should/ and s/shoud/should/



details:   https://anonhg.NetBSD.org/src/rev/11ce7623e8ee
branches:  trunk
changeset: 365197:11ce7623e8ee
user:      andvar <andvar%NetBSD.org@localhost>
date:      Tue Apr 12 21:05:36 2022 +0000

description:
s/sould/should/ and s/shoud/should/

diffstat:

 lib/libperfuse/ops.c             |  4 ++--
 sys/arch/hp300/DOC/TODO.hp300    |  4 ++--
 sys/dev/ieee1394/sbp.c           |  6 +++---
 sys/dev/marvell/mvxpsec.c        |  4 ++--
 tests/lib/libc/gen/t_closefrom.c |  6 +++---
 5 files changed, 12 insertions(+), 12 deletions(-)

diffs (108 lines):

diff -r a9372637770d -r 11ce7623e8ee lib/libperfuse/ops.c
--- a/lib/libperfuse/ops.c      Tue Apr 12 20:51:42 2022 +0000
+++ b/lib/libperfuse/ops.c      Tue Apr 12 21:05:36 2022 +0000
@@ -1,4 +1,4 @@
-/*  $NetBSD: ops.c,v 1.89 2021/09/11 21:30:46 andvar Exp $ */
+/*  $NetBSD: ops.c,v 1.90 2022/04/12 21:05:36 andvar Exp $ */
 
 /*-
  *  Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@@ -2367,7 +2367,7 @@
                return ENOENT;
 
        /*
-        * Attempt to rmdir dir/.. shoud raise ENOTEMPTY
+        * Attempt to rmdir dir/.. should raise ENOTEMPTY
         */
        if (PERFUSE_NODE_DATA(targ)->pnd_nodeid == pnd->pnd_parent_nodeid)
                return ENOTEMPTY;
diff -r a9372637770d -r 11ce7623e8ee sys/arch/hp300/DOC/TODO.hp300
--- a/sys/arch/hp300/DOC/TODO.hp300     Tue Apr 12 20:51:42 2022 +0000
+++ b/sys/arch/hp300/DOC/TODO.hp300     Tue Apr 12 21:05:36 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO.hp300,v 1.2 1994/10/26 07:22:59 cgd Exp $
+$NetBSD: TODO.hp300,v 1.3 2022/04/12 21:05:37 andvar Exp $
 
 1. Create and use an interrupt stack.
    Well actually, use the master SP for kernel stacks instead of
@@ -55,7 +55,7 @@
    statistics/profiling timer.  Should be able to compile-time (runtime?)
    select between the two.
 
-7. Conditional MMU code sould be restructured.
+7. Conditional MMU code should be restructured.
    Right now it reflects the evolutionary path of the code: 320/350 MMU
    was supported and PMMU support was glued on.  The latter can be ifdef'ed
    out when not needed, but not all of the former (e.g. ``mmutype'' tests).
diff -r a9372637770d -r 11ce7623e8ee sys/dev/ieee1394/sbp.c
--- a/sys/dev/ieee1394/sbp.c    Tue Apr 12 20:51:42 2022 +0000
+++ b/sys/dev/ieee1394/sbp.c    Tue Apr 12 21:05:36 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sbp.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $ */
+/*     $NetBSD: sbp.c,v 1.42 2022/04/12 21:05:37 andvar Exp $  */
 /*-
  * Copyright (c) 2003 Hidetoshi Shimokawa
  * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sbp.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sbp.c,v 1.42 2022/04/12 21:05:37 andvar Exp $");
 
 
 #include <sys/param.h>
@@ -672,7 +672,7 @@
 
        sc = target->sbp;
        crom_init_context(&cc, target->fwdev->csrrom);
-       /* XXX shoud parse appropriate unit directories only */
+       /* XXX should parse appropriate unit directories only */
        maxlun = -1;
        while (cc.depth >= 0) {
                reg = crom_search_key(&cc, CROM_LUN);
diff -r a9372637770d -r 11ce7623e8ee sys/dev/marvell/mvxpsec.c
--- a/sys/dev/marvell/mvxpsec.c Tue Apr 12 20:51:42 2022 +0000
+++ b/sys/dev/marvell/mvxpsec.c Tue Apr 12 21:05:36 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mvxpsec.c,v 1.13 2022/04/09 23:38:32 riastradh Exp $   */
+/*     $NetBSD: mvxpsec.c,v 1.14 2022/04/12 21:05:37 andvar Exp $      */
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -403,7 +403,7 @@
        MVXPSEC_WRITE(sc, MV_TDMA_ERR_MASK, MVXPSEC_DEFAULT_ERR);
        sc->sc_done_ih =
            marvell_intr_establish(mva->mva_irq, IPL_NET, mvxpsec_intr, sc);
-       /* XXX: sould pass error IRQ using mva */
+       /* XXX: should pass error IRQ using mva */
        sc->sc_error_ih = marvell_intr_establish(MVXPSEC_ERR_INT(sc),
            IPL_NET, mvxpsec_eintr, sc);
        aprint_normal_dev(self,
diff -r a9372637770d -r 11ce7623e8ee tests/lib/libc/gen/t_closefrom.c
--- a/tests/lib/libc/gen/t_closefrom.c  Tue Apr 12 20:51:42 2022 +0000
+++ b/tests/lib/libc/gen/t_closefrom.c  Tue Apr 12 21:05:36 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_closefrom.c,v 1.4 2011/05/11 08:11:36 jruoho Exp $ */
+/* $NetBSD: t_closefrom.c,v 1.5 2022/04/12 21:05:37 andvar Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_closefrom.c,v 1.4 2011/05/11 08:11:36 jruoho Exp $");
+__RCSID("$NetBSD: t_closefrom.c,v 1.5 2022/04/12 21:05:37 andvar Exp $");
 
 #include <sys/wait.h>
 
@@ -155,7 +155,7 @@
        (void)wait(&sta);
 
        /*
-        * STDIN_FILENO sould still be open; WEXITSTATUS(1) == 0.
+        * STDIN_FILENO should still be open; WEXITSTATUS(1) == 0.
         */
        if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != 0)
                atf_tc_fail("not all descriptors were closed");



Home | Main Index | Thread Index | Old Index