s/sould/should/ and s/shoud/should/

This commit is contained in:
andvar 2022-04-12 21:05:36 +00:00
parent bdd61daa31
commit de0a2812df
5 changed files with 12 additions and 12 deletions

View File

@ -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 @@ perfuse_node_rmdir(struct puffs_usermount *pu, puffs_cookie_t opc,
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;

View File

@ -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 @@ $NetBSD: TODO.hp300,v 1.2 1994/10/26 07:22:59 cgd Exp $
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).

View File

@ -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 @@ sbp_alloc_lun(struct sbp_target *target)
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);

View File

@ -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_attach(device_t parent, device_t self, void *aux)
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,

View File

@ -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 @@ ATF_TC_BODY(closefrom_one, tc)
(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");