Module Name: src Committed By: andvar Date: Thu Sep 16 22:19:12 UTC 2021
Modified Files: src/lib/libp2k: p2k.3 src/lib/libresolv: dst_api.c src/lib/librumpclient: rumpclient.c src/lib/libukfs: ukfs.3 src/sys/arch/arm/omap: omap_edma.c src/sys/arch/arm/ti: ti_edma.c src/sys/arch/shark/shark: i8042.c src/sys/dev: smbios.c src/sys/dev/ic: aic79xx.c aic7xxx.c src/sys/dev/usb: umass.c src/sys/fs/nilfs: nilfs_vfsops.c src/sys/fs/udf: udf_subr.c udf_vfsops.c src/sys/kern: kern_physio.c src/sys/net: bpf.c src/sys/stand/efiboot: smbios.c src/tests/dev/md: h_mdserv.c src/tests/fs/puffs: t_fuzz.c src/tests/fs/puffs/h_dtfs: dtfs_subr.c src/tests/lib/librumphijack: h_client.c src/tests/sbin/fsck_ffs: t_enable_quotas.sh src/usr.sbin/syslogd: tls.c Log Message: fix typos in word "successful". To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/lib/libp2k/p2k.3 cvs rdiff -u -r1.3 -r1.4 src/lib/libresolv/dst_api.c cvs rdiff -u -r1.68 -r1.69 src/lib/librumpclient/rumpclient.c cvs rdiff -u -r1.16 -r1.17 src/lib/libukfs/ukfs.3 cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/omap/omap_edma.c cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/ti/ti_edma.c cvs rdiff -u -r1.7 -r1.8 src/sys/arch/shark/shark/i8042.c cvs rdiff -u -r1.3 -r1.4 src/sys/dev/smbios.c cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/aic79xx.c cvs rdiff -u -r1.143 -r1.144 src/sys/dev/ic/aic7xxx.c cvs rdiff -u -r1.185 -r1.186 src/sys/dev/usb/umass.c cvs rdiff -u -r1.26 -r1.27 src/sys/fs/nilfs/nilfs_vfsops.c cvs rdiff -u -r1.157 -r1.158 src/sys/fs/udf/udf_subr.c cvs rdiff -u -r1.81 -r1.82 src/sys/fs/udf/udf_vfsops.c cvs rdiff -u -r1.98 -r1.99 src/sys/kern/kern_physio.c cvs rdiff -u -r1.241 -r1.242 src/sys/net/bpf.c cvs rdiff -u -r1.3 -r1.4 src/sys/stand/efiboot/smbios.c cvs rdiff -u -r1.4 -r1.5 src/tests/dev/md/h_mdserv.c cvs rdiff -u -r1.6 -r1.7 src/tests/fs/puffs/t_fuzz.c cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_subr.c cvs rdiff -u -r1.9 -r1.10 src/tests/lib/librumphijack/h_client.c cvs rdiff -u -r1.2 -r1.3 src/tests/sbin/fsck_ffs/t_enable_quotas.sh cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/syslogd/tls.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libp2k/p2k.3 diff -u src/lib/libp2k/p2k.3:1.10 src/lib/libp2k/p2k.3:1.11 --- src/lib/libp2k/p2k.3:1.10 Fri Jan 7 16:02:32 2011 +++ src/lib/libp2k/p2k.3 Thu Sep 16 22:19:10 2021 @@ -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 ru 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 Index: src/lib/libresolv/dst_api.c diff -u src/lib/libresolv/dst_api.c:1.3 src/lib/libresolv/dst_api.c:1.4 --- src/lib/libresolv/dst_api.c:1.3 Fri Nov 16 02:16:38 2012 +++ src/lib/libresolv/dst_api.c Thu Sep 16 22:19:10 2021 @@ -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, co * 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 */ Index: src/lib/librumpclient/rumpclient.c diff -u src/lib/librumpclient/rumpclient.c:1.68 src/lib/librumpclient/rumpclient.c:1.69 --- src/lib/librumpclient/rumpclient.c:1.68 Sat Sep 11 14:23:04 2021 +++ src/lib/librumpclient/rumpclient.c Thu Sep 16 22:19:10 2021 @@ -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, st 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) Index: src/lib/libukfs/ukfs.3 diff -u src/lib/libukfs/ukfs.3:1.16 src/lib/libukfs/ukfs.3:1.17 --- src/lib/libukfs/ukfs.3:1.16 Mon Mar 12 11:56:34 2018 +++ src/lib/libukfs/ukfs.3 Thu Sep 16 22:19:10 2021 @@ -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 , Index: src/sys/arch/arm/omap/omap_edma.c diff -u src/sys/arch/arm/omap/omap_edma.c:1.4 src/sys/arch/arm/omap/omap_edma.c:1.5 --- src/sys/arch/arm/omap/omap_edma.c:1.4 Tue Mar 14 15:11:41 2017 +++ src/sys/arch/arm/omap/omap_edma.c Thu Sep 16 22:19:10 2021 @@ -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 <jmcne...@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 } /* - * 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 Index: src/sys/arch/arm/ti/ti_edma.c diff -u src/sys/arch/arm/ti/ti_edma.c:1.3 src/sys/arch/arm/ti/ti_edma.c:1.4 --- src/sys/arch/arm/ti/ti_edma.c:1.3 Wed Jan 27 03:10:20 2021 +++ src/sys/arch/arm/ti/ti_edma.c Thu Sep 16 22:19:10 2021 @@ -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 <jmcne...@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 } /* - * 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 Index: src/sys/arch/shark/shark/i8042.c diff -u src/sys/arch/shark/shark/i8042.c:1.7 src/sys/arch/shark/shark/i8042.c:1.8 --- src/sys/arch/shark/shark/i8042.c:1.7 Wed Aug 21 04:17:41 2019 +++ src/sys/arch/shark/shark/i8042.c Thu Sep 16 22:19:10 2021 @@ -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; Index: src/sys/dev/smbios.c diff -u src/sys/dev/smbios.c:1.3 src/sys/dev/smbios.c:1.4 --- src/sys/dev/smbios.c:1.3 Sat Jul 24 22:33:23 2021 +++ src/sys/dev/smbios.c Thu Sep 16 22:19:10 2021 @@ -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 s /* * 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. */ Index: src/sys/dev/ic/aic79xx.c diff -u src/sys/dev/ic/aic79xx.c:1.57 src/sys/dev/ic/aic79xx.c:1.58 --- src/sys/dev/ic/aic79xx.c:1.57 Sat Jul 24 21:31:37 2021 +++ src/sys/dev/ic/aic79xx.c Thu Sep 16 22:19:10 2021 @@ -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); Index: src/sys/dev/ic/aic7xxx.c diff -u src/sys/dev/ic/aic7xxx.c:1.143 src/sys/dev/ic/aic7xxx.c:1.144 --- src/sys/dev/ic/aic7xxx.c:1.143 Sat Jul 24 21:31:37 2021 +++ src/sys/dev/ic/aic7xxx.c Thu Sep 16 22:19:11 2021 @@ -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); Index: src/sys/dev/usb/umass.c diff -u src/sys/dev/usb/umass.c:1.185 src/sys/dev/usb/umass.c:1.186 --- src/sys/dev/usb/umass.c:1.185 Sun May 23 08:42:47 2021 +++ src/sys/dev/usb/umass.c Thu Sep 16 22:19:11 2021 @@ -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, 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; Index: src/sys/fs/nilfs/nilfs_vfsops.c diff -u src/sys/fs/nilfs/nilfs_vfsops.c:1.26 src/sys/fs/nilfs/nilfs_vfsops.c:1.27 --- src/sys/fs/nilfs/nilfs_vfsops.c:1.26 Mon Mar 16 21:20:10 2020 +++ src/sys/fs/nilfs/nilfs_vfsops.c Thu Sep 16 22:19:11 2021 @@ -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 } /* successfully mounted */ - DPRINTF(VOLUMES, ("nilfs_mount() successfull\n")); + DPRINTF(VOLUMES, ("nilfs_mount() successful\n")); return 0; } Index: src/sys/fs/udf/udf_subr.c diff -u src/sys/fs/udf/udf_subr.c:1.157 src/sys/fs/udf/udf_subr.c:1.158 --- src/sys/fs/udf/udf_subr.c:1.157 Fri Sep 3 21:55:00 2021 +++ src/sys/fs/udf/udf_subr.c Thu Sep 16 22:19:11 2021 @@ -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 "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; } Index: src/sys/fs/udf/udf_vfsops.c diff -u src/sys/fs/udf/udf_vfsops.c:1.81 src/sys/fs/udf/udf_vfsops.c:1.82 --- src/sys/fs/udf/udf_vfsops.c:1.81 Sat Jul 24 21:31:38 2021 +++ src/sys/fs/udf/udf_vfsops.c Thu Sep 16 22:19:11 2021 @@ -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 * 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); Index: src/sys/kern/kern_physio.c diff -u src/sys/kern/kern_physio.c:1.98 src/sys/kern/kern_physio.c:1.99 --- src/sys/kern/kern_physio.c:1.98 Sat Mar 14 15:31:29 2020 +++ src/sys/kern/kern_physio.c Thu Sep 16 22:19:11 2021 @@ -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 *), s } /* - * 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. */ Index: src/sys/net/bpf.c diff -u src/sys/net/bpf.c:1.241 src/sys/net/bpf.c:1.242 --- src/sys/net/bpf.c:1.241 Wed Jul 14 06:50:22 2021 +++ src/sys/net/bpf.c Thu Sep 16 22:19:11 2021 @@ -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. */ Index: src/sys/stand/efiboot/smbios.c diff -u src/sys/stand/efiboot/smbios.c:1.3 src/sys/stand/efiboot/smbios.c:1.4 --- src/sys/stand/efiboot/smbios.c:1.3 Fri Jul 23 21:33:00 2021 +++ src/sys/stand/efiboot/smbios.c Thu Sep 16 22:19:11 2021 @@ -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 s /* * 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. */ Index: src/tests/dev/md/h_mdserv.c diff -u src/tests/dev/md/h_mdserv.c:1.4 src/tests/dev/md/h_mdserv.c:1.5 --- src/tests/dev/md/h_mdserv.c:1.4 Thu Feb 10 13:29:02 2011 +++ src/tests/dev/md/h_mdserv.c Thu Sep 16 22:19:11 2021 @@ -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"); Index: src/tests/fs/puffs/t_fuzz.c diff -u src/tests/fs/puffs/t_fuzz.c:1.6 src/tests/fs/puffs/t_fuzz.c:1.7 --- src/tests/fs/puffs/t_fuzz.c:1.6 Fri Jan 13 21:30:40 2017 +++ src/tests/fs/puffs/t_fuzz.c Thu Sep 16 22:19:11 2021 @@ -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); Index: src/tests/fs/puffs/h_dtfs/dtfs_subr.c diff -u src/tests/fs/puffs/h_dtfs/dtfs_subr.c:1.4 src/tests/fs/puffs/h_dtfs/dtfs_subr.c:1.5 --- src/tests/fs/puffs/h_dtfs/dtfs_subr.c:1.4 Sat Oct 19 17:45:00 2013 +++ src/tests/fs/puffs/h_dtfs/dtfs_subr.c Thu Sep 16 22:19:12 2021 @@ -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 v /* * 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. */ Index: src/tests/lib/librumphijack/h_client.c diff -u src/tests/lib/librumphijack/h_client.c:1.9 src/tests/lib/librumphijack/h_client.c:1.10 --- src/tests/lib/librumphijack/h_client.c:1.9 Fri Oct 4 09:02:00 2019 +++ src/tests/lib/librumphijack/h_client.c Thu Sep 16 22:19:12 2021 @@ -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) { Index: src/tests/sbin/fsck_ffs/t_enable_quotas.sh diff -u src/tests/sbin/fsck_ffs/t_enable_quotas.sh:1.2 src/tests/sbin/fsck_ffs/t_enable_quotas.sh:1.3 --- src/tests/sbin/fsck_ffs/t_enable_quotas.sh:1.2 Sun Mar 6 17:08:41 2011 +++ src/tests/sbin/fsck_ffs/t_enable_quotas.sh Thu Sep 16 22:19:12 2021 @@ -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 Index: src/usr.sbin/syslogd/tls.c diff -u src/usr.sbin/syslogd/tls.c:1.17 src/usr.sbin/syslogd/tls.c:1.18 --- src/usr.sbin/syslogd/tls.c:1.17 Thu Oct 24 08:21:18 2019 +++ src/usr.sbin/syslogd/tls.c Thu Sep 16 22:19:12 2021 @@ -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 *x509verifys /* * 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*