fix typos in word "successful".

This commit is contained in:
andvar 2021-09-16 22:19:10 +00:00
parent 72e44f84cb
commit b58602814f
23 changed files with 66 additions and 66 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: p2k.3,v 1.10 2011/01/07 16:02:32 pooka Exp $
.\" $NetBSD: p2k.3,v 1.11 2021/09/16 22:19:10 andvar Exp $
.\"
.\" Copyright (c) 2008 Antti Kantee. All rights reserved.
.\"
@ -70,7 +70,7 @@ It can therefore be used to mount and run kernel file system code as
a userspace daemon.
.Pp
Calling the library interface function mounts the file system and,
if succesful, starts handling requests.
if successful, starts handling requests.
The parameters are handled by
.Fn ukfs_mount
(see

View File

@ -1,4 +1,4 @@
/* $NetBSD: dst_api.c,v 1.3 2012/11/16 02:16:38 christos Exp $ */
/* $NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $ */
/*
* Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.
@ -40,7 +40,7 @@
#if 0
static const char rcsid[] = "Header: /proj/cvs/prod/libbind/dst/dst_api.c,v 1.17 2007/09/24 17:18:25 each Exp ";
#else
__RCSID("$NetBSD: dst_api.c,v 1.3 2012/11/16 02:16:38 christos Exp $");
__RCSID("$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $");
#endif
@ -240,7 +240,7 @@ dst_compare_keys(const DST_KEY *key1, const DST_KEY *key2)
* The location to which the signature will be written.
* sig_len Length of the signature field in bytes.
* Return
* 0 Successfull INIT or Update operation
* 0 Successful INIT or Update operation
* >0 success FINAL (sign) operation
* <0 failure
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: rumpclient.c,v 1.68 2021/09/11 14:23:04 christos Exp $ */
/* $NetBSD: rumpclient.c,v 1.69 2021/09/16 22:19:10 andvar Exp $ */
/*
* Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved.
@ -50,7 +50,7 @@
#define USE_SIGNALFD
#endif
__RCSID("$NetBSD: rumpclient.c,v 1.68 2021/09/11 14:23:04 christos Exp $");
__RCSID("$NetBSD: rumpclient.c,v 1.69 2021/09/16 22:19:10 andvar Exp $");
#include <sys/param.h>
#include <sys/mman.h>
@ -200,7 +200,7 @@ send_with_recon(struct spclient *spc, struct iovec *iov, size_t iovlen)
continue;
/*
* ok, reconnect succesful. we need to return to
* ok, reconnect successful. we need to return to
* the upper layer to get the entire PDU resent.
*/
if (reconretries != 1)

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ukfs.3,v 1.16 2018/03/12 11:56:34 pgoyette Exp $
.\" $NetBSD: ukfs.3,v 1.17 2021/09/16 22:19:10 andvar Exp $
.\"
.\" Copyright (c) 2008 Antti Kantee. All rights reserved.
.\"
@ -290,7 +290,7 @@ state is
It works like
.Xr chdir 2
in the sense that it affects the interpretation of relative paths.
If succesful, all relative pathnames will be resolved starting from the
If successful, all relative pathnames will be resolved starting from the
current directory.
Currently the call affects all accesses to that particular
.Fa ukfs ,

View File

@ -1,4 +1,4 @@
/* $NetBSD: omap_edma.c,v 1.4 2017/03/14 15:11:41 skrll Exp $ */
/* $NetBSD: omap_edma.c,v 1.5 2021/09/16 22:19:10 andvar Exp $ */
/*-
* Copyright (c) 2014 Jared D. McNeill <jmcneill@invisible.ca>
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: omap_edma.c,v 1.4 2017/03/14 15:11:41 skrll Exp $");
__KERNEL_RCSID(0, "$NetBSD: omap_edma.c,v 1.5 2021/09/16 22:19:10 andvar Exp $");
#include "opt_omap.h"
@ -494,7 +494,7 @@ edma_transfer_start(struct edma_channel *ch)
}
/*
* Halt a DMA transfer. Called after successfull transfer, or to abort
* Halt a DMA transfer. Called after successful transfer, or to abort
* a transfer.
*/
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: ti_edma.c,v 1.3 2021/01/27 03:10:20 thorpej Exp $ */
/* $NetBSD: ti_edma.c,v 1.4 2021/09/16 22:19:10 andvar Exp $ */
/*-
* Copyright (c) 2014 Jared D. McNeill <jmcneill@invisible.ca>
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ti_edma.c,v 1.3 2021/01/27 03:10:20 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: ti_edma.c,v 1.4 2021/09/16 22:19:10 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -464,7 +464,7 @@ edma_transfer_start(struct edma_channel *ch)
}
/*
* Halt a DMA transfer. Called after successfull transfer, or to abort
* Halt a DMA transfer. Called after successful transfer, or to abort
* a transfer.
*/
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: i8042.c,v 1.7 2019/08/21 04:17:41 msaitoh Exp $ */
/* $NetBSD: i8042.c,v 1.8 2021/09/16 22:19:10 andvar Exp $ */
/*
* Copyright 1997
@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: i8042.c,v 1.7 2019/08/21 04:17:41 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: i8042.c,v 1.8 2021/09/16 22:19:10 andvar Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@ -354,7 +354,7 @@ i8042_cmd(bus_space_tag_t iot,
c = bus_space_read_1(iot, ioh, KBDATAPO);
if (c == responseExpected)
{
/* Successfull command so we're outa here
/* Successful command so we're outa here
*/
status = 1;
break;

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic79xx.c,v 1.57 2021/07/24 21:31:37 andvar Exp $ */
/* $NetBSD: aic79xx.c,v 1.58 2021/09/16 22:19:10 andvar Exp $ */
/*
* Core routines and tables shareable across OS platforms.
@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.57 2021/07/24 21:31:37 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.58 2021/09/16 22:19:10 andvar Exp $");
#include <dev/ic/aic79xx_osm.h>
#include <dev/ic/aic79xx_inline.h>
@ -5446,7 +5446,7 @@ ahd_init_scbdata(struct ahd_softc *ahd)
}
/*
* Note that we were successfull
* Note that we were successful
*/
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic7xxx.c,v 1.143 2021/07/24 21:31:37 andvar Exp $ */
/* $NetBSD: aic7xxx.c,v 1.144 2021/09/16 22:19:11 andvar Exp $ */
/*
* Core routines and tables shareable across OS platforms.
@ -39,7 +39,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
* $Id: aic7xxx.c,v 1.143 2021/07/24 21:31:37 andvar Exp $
* $Id: aic7xxx.c,v 1.144 2021/09/16 22:19:11 andvar Exp $
*
* //depot/aic7xxx/aic7xxx/aic7xxx.c#112 $
*
@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.143 2021/07/24 21:31:37 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.144 2021/09/16 22:19:11 andvar Exp $");
#include <dev/ic/aic7xxx_osm.h>
#include <dev/ic/aic7xxx_inline.h>
@ -4244,7 +4244,7 @@ ahc_init_scbdata(struct ahc_softc *ahc)
ahc_outb(ahc, NEXT_QUEUED_SCB, ahc->next_queued_scb->hscb->tag);
/*
* Note that we were successfull
* Note that we were successful
*/
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: smbios.c,v 1.3 2021/07/24 22:33:23 jmcneill Exp $ */
/* $NetBSD: smbios.c,v 1.4 2021/09/16 22:19:10 andvar Exp $ */
/*
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -86,7 +86,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.3 2021/07/24 22:33:23 jmcneill Exp $");
__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.4 2021/09/16 22:19:10 andvar Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@ -273,7 +273,7 @@ smbios_find_table(uint8_t type, struct smbtable *st)
/*
* The cookie field of the smtable structure is used to locate
* multiple instances of a table of an arbitrary type. Following the
* sucessful location of a table, the type is encoded as bits 0:7 of
* successful location of a table, the type is encoded as bits 0:7 of
* the cookie value, the offset in terms of the number of structures
* preceding that referenced by the handle is encoded in bits 15:31.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: umass.c,v 1.185 2021/05/23 08:42:47 riastradh Exp $ */
/* $NetBSD: umass.c,v 1.186 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -124,7 +124,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.185 2021/05/23 08:42:47 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.186 2021/09/16 22:19:11 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@ -1564,7 +1564,7 @@ umass_bbb_state(struct usbd_xfer *xfer, void *priv,
DPRINTFM(UDMASS_BBB, "sc %#jx: Command Failed, "
"res = %jd", (uintptr_t)sc, residue, 0, 0);
/* SCSI command failed but transfer was succesful */
/* SCSI command failed but transfer was successful */
umass_transfer_done(sc, residue, STATUS_CMD_FAILED);
return;

View File

@ -1,4 +1,4 @@
/* $NetBSD: nilfs_vfsops.c,v 1.26 2020/03/16 21:20:10 pgoyette Exp $ */
/* $NetBSD: nilfs_vfsops.c,v 1.27 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 2008, 2009 Reinoud Zandijk
@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
__KERNEL_RCSID(0, "$NetBSD: nilfs_vfsops.c,v 1.26 2020/03/16 21:20:10 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: nilfs_vfsops.c,v 1.27 2021/09/16 22:19:11 andvar Exp $");
#endif /* not lint */
@ -962,7 +962,7 @@ nilfs_mount(struct mount *mp, const char *path,
}
/* successfully mounted */
DPRINTF(VOLUMES, ("nilfs_mount() successfull\n"));
DPRINTF(VOLUMES, ("nilfs_mount() successful\n"));
return 0;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: udf_subr.c,v 1.157 2021/09/03 21:55:00 andvar Exp $ */
/* $NetBSD: udf_subr.c,v 1.158 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.157 2021/09/03 21:55:00 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.158 2021/09/16 22:19:11 andvar Exp $");
#endif /* not lint */
@ -1521,7 +1521,7 @@ udf_writeout_lvint(struct udf_mount *ump, int lvflag)
"space = %d\n", trace->start, trace->end, trace->pos,
trace->wpos, space));
DPRINTF(VOLUMES, ("finished writing out logvol integrity descriptor "
"successfull\n"));
"successfully\n"));
return error;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: udf_vfsops.c,v 1.81 2021/07/24 21:31:38 andvar Exp $ */
/* $NetBSD: udf_vfsops.c,v 1.82 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.81 2021/07/24 21:31:38 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.82 2021/09/16 22:19:11 andvar Exp $");
#endif /* not lint */
@ -411,7 +411,7 @@ udf_mount(struct mount *mp, const char *path,
spec_node_setmountedfs(devvp, mp);
/* successfully mounted */
DPRINTF(VOLUMES, ("udf_mount() successfull\n"));
DPRINTF(VOLUMES, ("udf_mount() successful\n"));
error = set_statvfs_info(path, UIO_USERSPACE, args->fspec, UIO_USERSPACE,
mp->mnt_op->vfs_name, mp, l);

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_physio.c,v 1.98 2020/03/14 15:31:29 ad Exp $ */
/* $NetBSD: kern_physio.c,v 1.99 2021/09/16 22:19:11 andvar Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@ -71,7 +71,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_physio.c,v 1.98 2020/03/14 15:31:29 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_physio.c,v 1.99 2021/09/16 22:19:11 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -355,7 +355,7 @@ physio(void (*strategy)(struct buf *), struct buf *obp, dev_t dev, int flags,
}
/*
* Beware vmapbuf(); if succesful it clobbers
* Beware vmapbuf(); if successful it clobbers
* b_data and saves it in b_saveaddr.
* However, vunmapbuf() restores b_data.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: bpf.c,v 1.241 2021/07/14 06:50:22 yamaguchi Exp $ */
/* $NetBSD: bpf.c,v 1.242 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 1990, 1991, 1993
@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.241 2021/07/14 06:50:22 yamaguchi Exp $");
__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.242 2021/09/16 22:19:11 andvar Exp $");
#if defined(_KERNEL_OPT)
#include "opt_bpf.h"
@ -2661,7 +2661,7 @@ bpf_modcmd(modcmd_t cmd, void *arg)
*
* NOTE: change won't be atomic to the outside. some
* packets may be not captured even if unload is
* not succesful. I think packet capture not working
* not successful. I think packet capture not working
* is a perfectly logical consequence of trying to
* disable packet capture.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: smbios.c,v 1.3 2021/07/23 21:33:00 jmcneill Exp $ */
/* $NetBSD: smbios.c,v 1.4 2021/09/16 22:19:11 andvar Exp $ */
/*
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -82,7 +82,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.3 2021/07/23 21:33:00 jmcneill Exp $");
__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.4 2021/09/16 22:19:11 andvar Exp $");
#include <sys/param.h>
@ -155,7 +155,7 @@ smbios_find_table(uint8_t type, struct smbtable *st)
/*
* The cookie field of the smtable structure is used to locate
* multiple instances of a table of an arbitrary type. Following the
* sucessful location of a table, the type is encoded as bits 0:7 of
* successful location of a table, the type is encoded as bits 0:7 of
* the cookie value, the offset in terms of the number of structures
* preceding that referenced by the handle is encoded in bits 15:31.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: h_mdserv.c,v 1.4 2011/02/10 13:29:02 pooka Exp $ */
/* $NetBSD: h_mdserv.c,v 1.5 2021/09/16 22:19:11 andvar Exp $ */
#include <sys/types.h>
#include <sys/mman.h>
@ -94,7 +94,7 @@ main(int argc, char *argv[])
* (process may exit between calling ioctl1 and ioctl2).
* So, start a probe thread which attempts to read the md
* and declares the md as configured when the read is
* succesful.
* successful.
*/
error = pthread_create(&pt, NULL, prober, argv[1]);
REQUIRE(error, "pthread_create");

View File

@ -1,4 +1,4 @@
/* $NetBSD: dtfs_subr.c,v 1.4 2013/10/19 17:45:00 christos Exp $ */
/* $NetBSD: dtfs_subr.c,v 1.5 2021/09/16 22:19:12 andvar Exp $ */
/*
* Copyright (c) 2006 Antti Kantee. All Rights Reserved.
@ -73,7 +73,7 @@ dtfs_baseattrs(struct vattr *vap, enum vtype type, ino_t id)
/*
* Well, as you can probably see, this interface has the slight problem
* of assuming file creation will always be succesful, or at least not
* of assuming file creation will always be successful, or at least not
* giving a reason for the failure. Be sure to do better when you
* implement your own fs.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_fuzz.c,v 1.6 2017/01/13 21:30:40 christos Exp $ */
/* $NetBSD: t_fuzz.c,v 1.7 2021/09/16 22:19:11 andvar Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -197,7 +197,7 @@ respondthread(void *arg)
break;
}
/* just say it was succesful */
/* just say it was successful */
preq->preq_rv = 0;
rump_sys_write(dafd, buf, n);
pthread_mutex_lock(&damtx);

View File

@ -1,4 +1,4 @@
/* $NetBSD: h_client.c,v 1.9 2019/10/04 09:02:00 mrg Exp $ */
/* $NetBSD: h_client.c,v 1.10 2021/09/16 22:19:12 andvar Exp $ */
/*
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@ -65,7 +65,7 @@ main(int argc, char *argv[])
if (rv == -1)
err(EXIT_FAILURE, "select");
if (rv != 0)
errx(EXIT_FAILURE, "select succesful");
errx(EXIT_FAILURE, "select successful");
if (FD_ISSET(pipefd[0], &rfds))
errx(EXIT_FAILURE, "stdin fileno is still set");
@ -86,13 +86,13 @@ main(int argc, char *argv[])
if (rv == -1)
err(EXIT_FAILURE, "select");
if (rv != 0)
errx(EXIT_FAILURE, "select succesful");
errx(EXIT_FAILURE, "select successful");
rv = select(0, NULL, NULL, NULL, &tv);
if (rv == -1)
err(EXIT_FAILURE, "select2");
if (rv != 0)
errx(EXIT_FAILURE, "select2 succesful");
errx(EXIT_FAILURE, "select2 successful");
return EXIT_SUCCESS;
} else if (strcmp(argv[1], "invafd") == 0) {

View File

@ -1,4 +1,4 @@
# $NetBSD: t_enable_quotas.sh,v 1.2 2011/03/06 17:08:41 bouyer Exp $
# $NetBSD: t_enable_quotas.sh,v 1.3 2021/09/16 22:19:12 andvar Exp $
#
# Copyright (c) 2011 Manuel Bouyer
# All rights reserved.
@ -32,9 +32,9 @@ for e in le be; do
test_case unallocated_${e}_${v} unallocated_quotas \
"recovery of unallocated" ${e} ${v}
test_case dir1_${e}_${v} dir1_quotas \
"successfull clear of wrong type of" ${e} ${v}
"successful clear of wrong type of" ${e} ${v}
test_case notreg_${e}_${v} notreg_quotas \
"successfull clear of wrong type of" ${e} ${v}
"successful clear of wrong type of" ${e} ${v}
done
done

View File

@ -1,4 +1,4 @@
/* $NetBSD: tls.c,v 1.17 2019/10/24 08:21:18 hannken Exp $ */
/* $NetBSD: tls.c,v 1.18 2021/09/16 22:19:12 andvar Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: tls.c,v 1.17 2019/10/24 08:21:18 hannken Exp $");
__RCSID("$NetBSD: tls.c,v 1.18 2021/09/16 22:19:12 andvar Exp $");
#ifndef DISABLE_TLS
#include <sys/stat.h>
@ -141,7 +141,7 @@ getVerifySetting(const char *x509verifystring)
/*
* init OpenSSL lib and one context.
* returns NULL if global context already exists.
* returns a status message on successfull init (to be free()d by caller).
* returns a status message on successful init (to be free()d by caller).
* calls die() on serious error.
*/
char*