Module Name: src Committed By: andvar Date: Wed Nov 2 20:38:22 UTC 2022
Modified Files: src/lib/libresolv: dst_api.c src/libexec/httpd: CHANGES src/sys/arch/arc/conf: MIMORI src/sys/arch/m68k/fpsp: get_op.sa src/sys/arch/powerpc/include: ofw_machdep.h src/sys/dev/isa: madreg.h wbsio.c src/sys/dev/marvell: gtmpsc.c src/sys/dev/pci: if_aq.c src/sys/kern: vfs_syscalls.c Log Message: fix various typos in comments and messages. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libresolv/dst_api.c cvs rdiff -u -r1.53 -r1.54 src/libexec/httpd/CHANGES cvs rdiff -u -r1.75 -r1.76 src/sys/arch/arc/conf/MIMORI cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/fpsp/get_op.sa cvs rdiff -u -r1.4 -r1.5 src/sys/arch/powerpc/include/ofw_machdep.h cvs rdiff -u -r1.5 -r1.6 src/sys/dev/isa/madreg.h cvs rdiff -u -r1.28 -r1.29 src/sys/dev/isa/wbsio.c cvs rdiff -u -r1.47 -r1.48 src/sys/dev/marvell/gtmpsc.c cvs rdiff -u -r1.38 -r1.39 src/sys/dev/pci/if_aq.c cvs rdiff -u -r1.555 -r1.556 src/sys/kern/vfs_syscalls.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/libresolv/dst_api.c diff -u src/lib/libresolv/dst_api.c:1.9 src/lib/libresolv/dst_api.c:1.10 --- src/lib/libresolv/dst_api.c:1.9 Tue May 24 06:27:59 2022 +++ src/lib/libresolv/dst_api.c Wed Nov 2 20:38:21 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: dst_api.c,v 1.9 2022/05/24 06:27:59 andvar Exp $ */ +/* $NetBSD: dst_api.c,v 1.10 2022/11/02 20:38:21 andvar Exp $ */ /* * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc. @@ -21,7 +21,7 @@ * This is the only file that needs to be changed if the crypto system is * changed. Exported functions are: * void dst_init() Initialize the toolkit - * int dst_check_algorithm() Function to determines if alg is suppored. + * int dst_check_algorithm() Function to determines if alg is supported. * int dst_compare_keys() Function to compare two keys for equality. * int dst_sign_data() Incremental signing routine. * int dst_verify_data() Incremental verify routine. @@ -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.9 2022/05/24 06:27:59 andvar Exp $"); +__RCSID("$NetBSD: dst_api.c,v 1.10 2022/11/02 20:38:21 andvar Exp $"); #endif @@ -334,7 +334,7 @@ dst_read_key(const char *in_keyname, con DST_KEY *dg_key = NULL, *pubkey = NULL; if (!dst_check_algorithm(in_alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, in_alg)); + EREPORT(("%s: Algorithm %d not supported\n", __func__, in_alg)); return (NULL); } if ((type & (DST_PUBLIC | DST_PRIVATE)) == 0) @@ -376,7 +376,7 @@ dst_write_key(const DST_KEY *key, const if (key == NULL) return (0); if (!dst_check_algorithm(key->dk_alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, + EREPORT(("%s: Algorithm %d not supported\n", __func__, key->dk_alg)); return (UNSUPPORTED_KEYALG); } @@ -659,7 +659,7 @@ dst_dnskey_to_key(const char *in_name, c return (NULL); alg = (u_int8_t) rdata[DST_KEY_ALG]; if (!dst_check_algorithm(alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, + EREPORT(("%s: Algorithm %d not supported\n", __func__, alg)); return (NULL); } @@ -688,7 +688,7 @@ dst_dnskey_to_key(const char *in_name, c len - start) > 0) return (key_st); } else - EREPORT(("%s: unsuppored alg %d\n", __func__, + EREPORT(("%s: unsupported alg %d\n", __func__, alg)); SAFE_FREE(key_st); @@ -718,7 +718,7 @@ dst_key_to_dnskey(const DST_KEY *key, u_ return (-1); if (!dst_check_algorithm(key->dk_alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, + EREPORT(("%s: Algorithm %d not supported\n", __func__, key->dk_alg)); return (UNSUPPORTED_KEYALG); } @@ -775,7 +775,7 @@ dst_buffer_to_key(const char *key_name, u_char dns[2048]; if (!dst_check_algorithm(alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, alg)); + EREPORT(("%s: Algorithm %d not supported\n", __func__, alg)); return (NULL); } @@ -971,7 +971,7 @@ dst_generate_key(const char *name, const return (NULL); if (!dst_check_algorithm(alg)) { /*%< make sure alg is available */ - EREPORT(("%s: Algorithm %d not suppored\n", __func__, alg)); + EREPORT(("%s: Algorithm %d not supported\n", __func__, alg)); return (NULL); } Index: src/libexec/httpd/CHANGES diff -u src/libexec/httpd/CHANGES:1.53 src/libexec/httpd/CHANGES:1.54 --- src/libexec/httpd/CHANGES:1.53 Tue Jan 4 06:08:14 2022 +++ src/libexec/httpd/CHANGES Wed Nov 2 20:38:21 2022 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.53 2022/01/04 06:08:14 kim Exp $ +$NetBSD: CHANGES,v 1.54 2022/11/02 20:38:21 andvar Exp $ changes in bozohttpd 20220104: o remove obsolete .bzdirect handling. @@ -376,7 +376,7 @@ changes in bozohttpd 5.03 (20000427): - fix a bug with chdir() changes in bozohttpd 5.02 (20000426): - - .pac spport from simonb + - .pac support from simonb changes in bozohttpd 5.01 (20000421): - .swf support Index: src/sys/arch/arc/conf/MIMORI diff -u src/sys/arch/arc/conf/MIMORI:1.75 src/sys/arch/arc/conf/MIMORI:1.76 --- src/sys/arch/arc/conf/MIMORI:1.75 Sat Jan 25 18:38:35 2020 +++ src/sys/arch/arc/conf/MIMORI Wed Nov 2 20:38:21 2022 @@ -1,4 +1,4 @@ -# $NetBSD: MIMORI,v 1.75 2020/01/25 18:38:35 thorpej Exp $ +# $NetBSD: MIMORI,v 1.76 2022/11/02 20:38:21 andvar Exp $ # NetBSD: GENERIC,v 1.31 2000/06/09 05:33:02 soda Exp # # MIMORI -- My NEC RISCstation 2250 (ur) @@ -198,7 +198,7 @@ tlphy* at mii? phy ? # ThunderLAN PHYs tqphy* at mii? phy ? # TDK Semiconductor PHYs ukphy* at mii? phy ? # generic unknown PHYs -# SCSI bus supoort +# SCSI bus support scsibus* at scsi? #### SCSI bus devices Index: src/sys/arch/m68k/fpsp/get_op.sa diff -u src/sys/arch/m68k/fpsp/get_op.sa:1.4 src/sys/arch/m68k/fpsp/get_op.sa:1.5 --- src/sys/arch/m68k/fpsp/get_op.sa:1.4 Sun Dec 9 01:43:13 2001 +++ src/sys/arch/m68k/fpsp/get_op.sa Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -* $NetBSD: get_op.sa,v 1.4 2001/12/09 01:43:13 briggs Exp $ +* $NetBSD: get_op.sa,v 1.5 2022/11/02 20:38:22 andvar Exp $ * MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP * M68000 Hi-Performance Microprocessor Division @@ -380,7 +380,7 @@ end_getop: * * Sets the DY_MO_FLG correctly. This is used only on if it is an -* unuspported data type exception. Set if dyadic. +* unsupported data type exception. Set if dyadic. * chk_dy_mo: move.w CMDREG1B(a6),d0 Index: src/sys/arch/powerpc/include/ofw_machdep.h diff -u src/sys/arch/powerpc/include/ofw_machdep.h:1.4 src/sys/arch/powerpc/include/ofw_machdep.h:1.5 --- src/sys/arch/powerpc/include/ofw_machdep.h:1.4 Tue Mar 2 02:28:45 2021 +++ src/sys/arch/powerpc/include/ofw_machdep.h Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: ofw_machdep.h,v 1.4 2021/03/02 02:28:45 thorpej Exp $ */ +/* $NetBSD: ofw_machdep.h,v 1.5 2022/11/02 20:38:22 andvar Exp $ */ /*- * Copyright (c) 2021 The NetBSD Foundation, Inc. @@ -54,7 +54,7 @@ struct OF_translation { #define OFW_MAX_TRANSLATIONS 48 -extern bool ofwbootcons_suppress; /* supporess OF console I/O */ +extern bool ofwbootcons_suppress; /* suppress OF console I/O */ extern int ofw_chosen; /* cached handle for "/chosen" */ extern struct OF_translation ofw_translations[OFW_MAX_TRANSLATIONS]; Index: src/sys/dev/isa/madreg.h diff -u src/sys/dev/isa/madreg.h:1.5 src/sys/dev/isa/madreg.h:1.6 --- src/sys/dev/isa/madreg.h:1.5 Tue Dec 8 14:26:57 1998 +++ src/sys/dev/isa/madreg.h Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: madreg.h,v 1.5 1998/12/08 14:26:57 augustss Exp $ */ +/* $NetBSD: madreg.h,v 1.6 2022/11/02 20:38:22 andvar Exp $ */ /* * Copyright (c) 1996 Lennart Augustsson * Copyright (c) 1995 Hannu Savolainen @@ -36,7 +36,7 @@ */ /* - * Variations of the suppored chips. + * Variations of the supported chips. */ #define MAD_NONE 0 Index: src/sys/dev/isa/wbsio.c diff -u src/sys/dev/isa/wbsio.c:1.28 src/sys/dev/isa/wbsio.c:1.29 --- src/sys/dev/isa/wbsio.c:1.28 Sat Oct 1 07:22:55 2022 +++ src/sys/dev/isa/wbsio.c Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: wbsio.c,v 1.28 2022/10/01 07:22:55 msaitoh Exp $ */ +/* $NetBSD: wbsio.c,v 1.29 2022/11/02 20:38:22 andvar Exp $ */ /* $OpenBSD: wbsio.c,v 1.10 2015/03/14 03:38:47 jsg Exp $ */ /* * Copyright (c) 2008 Mark Kettenis <kette...@openbsd.org> @@ -827,7 +827,7 @@ wbsio_wdog_attach(device_t self) case WBSIO_ID_NCT6779D: break; default: - /* WDT is not supoorted */ + /* WDT is not supported */ return; } Index: src/sys/dev/marvell/gtmpsc.c diff -u src/sys/dev/marvell/gtmpsc.c:1.47 src/sys/dev/marvell/gtmpsc.c:1.48 --- src/sys/dev/marvell/gtmpsc.c:1.47 Mon Sep 3 16:29:31 2018 +++ src/sys/dev/marvell/gtmpsc.c Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: gtmpsc.c,v 1.47 2018/09/03 16:29:31 riastradh Exp $ */ +/* $NetBSD: gtmpsc.c,v 1.48 2022/11/02 20:38:22 andvar Exp $ */ /* * Copyright (c) 2009 KIYOHARA Takashi * All rights reserved. @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: gtmpsc.c,v 1.47 2018/09/03 16:29:31 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: gtmpsc.c,v 1.48 2022/11/02 20:38:22 andvar Exp $"); #include "opt_kgdb.h" @@ -1331,7 +1331,7 @@ gtmpsccnattach(bus_space_tag_t iot, bus_ } /* - * gtmpsc_hackinit - hacks required to supprt GTMPSC console + * gtmpsc_hackinit - hacks required to support GTMPSC console */ STATIC int gtmpsc_hackinit(struct gtmpsc_softc *sc, bus_space_tag_t iot, Index: src/sys/dev/pci/if_aq.c diff -u src/sys/dev/pci/if_aq.c:1.38 src/sys/dev/pci/if_aq.c:1.39 --- src/sys/dev/pci/if_aq.c:1.38 Fri Oct 21 09:29:32 2022 +++ src/sys/dev/pci/if_aq.c Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: if_aq.c,v 1.38 2022/10/21 09:29:32 riastradh Exp $ */ +/* $NetBSD: if_aq.c,v 1.39 2022/11/02 20:38:22 andvar Exp $ */ /** * aQuantia Corporation Network Driver @@ -62,7 +62,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.38 2022/10/21 09:29:32 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.39 2022/11/02 20:38:22 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_if_aq.h" @@ -92,7 +92,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1. /* driver configuration */ #define CONFIG_INTR_MODERATION_ENABLE true /* delayed interrupt */ -#undef CONFIG_LRO_SUPPORT /* no LRO not suppoted */ +#undef CONFIG_LRO_SUPPORT /* no LRO not supported */ #undef CONFIG_NO_TXRX_INDEPENDENT /* share TX/RX interrupts */ #define AQ_NINTR_MAX (AQ_RSSQUEUE_MAX + AQ_RSSQUEUE_MAX + 1) Index: src/sys/kern/vfs_syscalls.c diff -u src/sys/kern/vfs_syscalls.c:1.555 src/sys/kern/vfs_syscalls.c:1.556 --- src/sys/kern/vfs_syscalls.c:1.555 Sat Feb 12 15:51:29 2022 +++ src/sys/kern/vfs_syscalls.c Wed Nov 2 20:38:22 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: vfs_syscalls.c,v 1.555 2022/02/12 15:51:29 thorpej Exp $ */ +/* $NetBSD: vfs_syscalls.c,v 1.556 2022/11/02 20:38:22 andvar Exp $ */ /*- * Copyright (c) 2008, 2009, 2019, 2020 The NetBSD Foundation, Inc. @@ -70,7 +70,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.555 2022/02/12 15:51:29 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.556 2022/11/02 20:38:22 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_fileassoc.h" @@ -4575,7 +4575,7 @@ do_sys_renameat(struct lwp *l, int fromf /* * Acknowledge that directories and non-directories aren't - * suposed to mix. + * supposed to mix. */ if (tvp != NULL) { if ((fvp->v_type == VDIR) && (tvp->v_type != VDIR)) {