wether -> whether

This commit is contained in:
maya 2019-04-21 11:45:08 +00:00
parent f1a7fa8c8a
commit f93d65267a
8 changed files with 22 additions and 22 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: resize_ffs.c,v 1.53 2017/10/09 05:24:26 mlelstv Exp $ */
/* $NetBSD: resize_ffs.c,v 1.54 2019/04/21 11:45:08 maya Exp $ */
/* From sources sent on February 17, 2003 */
/*-
* As its sole author, I explicitly place this code in the public
@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: resize_ffs.c,v 1.53 2017/10/09 05:24:26 mlelstv Exp $");
__RCSID("$NetBSD: resize_ffs.c,v 1.54 2019/04/21 11:45:08 maya Exp $");
#include <sys/disk.h>
#include <sys/disklabel.h>
@ -2086,7 +2086,7 @@ write_sbs(void)
}
/*
* Check to see wether new size changes the filesystem
* Check to see whether new size changes the filesystem
* return exit code
*/
static int

View File

@ -1,4 +1,4 @@
/* $NetBSD: pyro.c,v 1.18 2016/11/10 06:44:35 macallan Exp $ */
/* $NetBSD: pyro.c,v 1.19 2019/04/21 11:45:08 maya Exp $ */
/* from: $OpenBSD: pyro.c,v 1.20 2010/12/05 15:15:14 kettenis Exp $ */
/*
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pyro.c,v 1.18 2016/11/10 06:44:35 macallan Exp $");
__KERNEL_RCSID(0, "$NetBSD: pyro.c,v 1.19 2019/04/21 11:45:08 maya Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -497,7 +497,7 @@ pyro_bus_map(bus_space_tag_t t, bus_addr_t offset,
/*
* BUS_SPACE_MAP_PREFETCHABLE causes hard hangs on schizo, so weed it
* out for now until someone can verify wether it works on pyro
* out for now until someone can verify whether it works on pyro
*/
flags &= ~BUS_SPACE_MAP_PREFETCHABLE;
@ -535,7 +535,7 @@ pyro_bus_mmap(bus_space_tag_t t, bus_addr_t paddr,
/*
* BUS_SPACE_MAP_PREFETCHABLE causes hard hangs on schizo, so weed it
* out for now until someone can verify wether it works on pyro
* out for now until someone can verify whether it works on pyro
*/
flags &= ~BUS_SPACE_MAP_PREFETCHABLE;

View File

@ -1,4 +1,4 @@
/* $NetBSD: dksubr.c,v 1.107 2019/03/27 19:13:34 martin Exp $ */
/* $NetBSD: dksubr.c,v 1.108 2019/04/21 11:45:08 maya Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 1999, 2002, 2008 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: dksubr.c,v 1.107 2019/03/27 19:13:34 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: dksubr.c,v 1.108 2019/04/21 11:45:08 maya Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -812,7 +812,7 @@ dk_dump(struct dk_softc *dksc, dev_t dev,
p->p_fstype));
return ENXIO;
}
/* Check wether dump goes to a wedge */
/* Check whether dump goes to a wedge */
if (dksc->sc_dkdev.dk_nwedges == 0) {
DPRINTF(DKDB_DUMP, ("%s: dump to raw\n", __func__));
return ENXIO;

View File

@ -1,4 +1,4 @@
/* $NetBSD: iscsi_globals.h,v 1.24 2019/04/21 11:26:46 mlelstv Exp $ */
/* $NetBSD: iscsi_globals.h,v 1.25 2019/04/21 11:45:08 maya Exp $ */
/*-
* Copyright (c) 2004,2005,2006,2011 The NetBSD Foundation, Inc.
@ -532,7 +532,7 @@ extern login_isid_t iscsi_InitiatorISID;
#ifdef ISCSI_DEBUG
extern int iscsi_debug_level; /* How much debug info to display */
extern bool iscsi_hex_bignums; /* Wether to encode parameters in hex or base64 */
extern bool iscsi_hex_bignums; /* Whether to encode parameters in hex or base64 */
#define DEBOUT(x) printf x
#define DEB(lev,x) { if (iscsi_debug_level >= lev) printf x ;}

View File

@ -1,4 +1,4 @@
/* $NetBSD: iscsi_text.c,v 1.12 2019/04/21 11:26:46 mlelstv Exp $ */
/* $NetBSD: iscsi_text.c,v 1.13 2019/04/21 11:45:08 maya Exp $ */
/*-
* Copyright (c) 2005,2006,2011 The NetBSD Foundation, Inc.
@ -172,7 +172,7 @@ typedef struct
{
text_key_t key; /* the key */
int list_num; /* number of elements in list, doubles as */
bool hex_bignums; /* wether to encode in hex or base64 */
bool hex_bignums; /* whether to encode in hex or base64 */
/* data size for large numeric values */
union
{

View File

@ -1,4 +1,4 @@
/* $NetBSD: iscsi_utils.c,v 1.26 2019/04/01 06:20:40 msaitoh Exp $ */
/* $NetBSD: iscsi_utils.c,v 1.27 2019/04/21 11:45:08 maya Exp $ */
/*-
* Copyright (c) 2004,2005,2006,2008 The NetBSD Foundation, Inc.
@ -686,7 +686,7 @@ get_sernum(session_t *sess, pdu_t *pdu)
/*
* sernum_in_window:
* Check wether serial number is in send window
* Check whether serial number is in send window
*
*/
int

View File

@ -1,4 +1,4 @@
/* $NetBSD: voyager.c,v 1.13 2018/12/09 11:14:02 jdolecek Exp $ */
/* $NetBSD: voyager.c,v 1.14 2019/04/21 11:45:08 maya Exp $ */
/*
* Copyright (c) 2009, 2011 Michael Lorenz
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: voyager.c,v 1.13 2018/12/09 11:14:02 jdolecek Exp $");
__KERNEL_RCSID(0, "$NetBSD: voyager.c,v 1.14 2019/04/21 11:45:08 maya Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -237,7 +237,7 @@ voyager_attach(device_t parent, device_t self, void *aux)
strcpy(vaa.vaa_name, "vac");
config_found_ia(sc->sc_dev, "voyagerbus", &vaa, voyager_print);
#endif
/* we use this mutex wether there's an i2c bus or not */
/* we use this mutex whether there's an i2c bus or not */
mutex_init(&sc->sc_i2c_lock, MUTEX_DEFAULT, IPL_NONE);
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_modctl.c,v 1.13 2019/01/27 02:08:50 pgoyette Exp $ */
/* $NetBSD: t_modctl.c,v 1.14 2019/04/21 11:45:09 maya Exp $ */
/*
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: t_modctl.c,v 1.13 2019/01/27 02:08:50 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: t_modctl.c,v 1.14 2019/04/21 11:45:09 maya Exp $");
#include <sys/module.h>
#include <sys/sysctl.h>
@ -61,7 +61,7 @@ static void unload_cleanup(const char *);
/* --------------------------------------------------------------------- */
/*
* A function checking wether we are allowed to load modules currently
* A function checking whether we are allowed to load modules currently
* (either the kernel is not modular, or securelevel may prevent it)
*/
static void