Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src fix typos in comments, mainly s/extention/extension/ and s/s...



details:   https://anonhg.NetBSD.org/src/rev/46c84b2a0e83
branches:  trunk
changeset: 1023328:46c84b2a0e83
user:      andvar <andvar%NetBSD.org@localhost>
date:      Fri Sep 03 21:54:58 2021 +0000

description:
fix typos in comments, mainly s/extention/extension/ and s/sufficent/sufficient/

diffstat:

 include/resolv.h                      |   4 ++--
 lib/libm/arch/hppa/fenv.c             |   6 +++---
 lib/libm/arch/i387/fenv.c             |   6 +++---
 lib/libm/arch/riscv/fenv.c            |   6 +++---
 lib/libm/arch/sparc/fenv.c            |   6 +++---
 lib/libm/arch/sparc64/fenv.c          |   6 +++---
 lib/libm/arch/x86_64/fenv.c           |   6 +++---
 libexec/httpd/CHANGES                 |   6 +++---
 sys/altq/altq_red.c                   |   6 +++---
 sys/arch/arm/include/armreg.h         |   4 ++--
 sys/arch/sandpoint/stand/altboot/wm.c |   6 +++---
 sys/dev/acpi/acpica.h                 |   4 ++--
 sys/dev/pci/if_bge.c                  |   6 +++---
 sys/dev/pci/nfsmb.c                   |   8 ++++----
 sys/dev/pci/pdcsata.c                 |   6 +++---
 sys/dev/usb/uvideo.c                  |   6 +++---
 sys/fs/udf/udf_allocation.c           |   6 +++---
 sys/fs/udf/udf_subr.c                 |   8 ++++----
 sys/net/ether_sw_offload.c            |   6 +++---
 sys/net80211/CHANGES                  |   2 +-
 sys/netinet/sctp_output.c             |  10 +++++-----
 sys/ufs/ffs/ffs_alloc.c               |   8 ++++----
 usr.sbin/puffs/mount_9p/nineproto.c   |   8 ++++----
 23 files changed, 70 insertions(+), 70 deletions(-)

diffs (truncated from 633 to 300 lines):

diff -r 8ae6de59411f -r 46c84b2a0e83 include/resolv.h
--- a/include/resolv.h  Fri Sep 03 21:02:04 2021 +0000
+++ b/include/resolv.h  Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: resolv.h,v 1.41 2021/04/30 16:07:49 christos Exp $     */
+/*     $NetBSD: resolv.h,v 1.42 2021/09/03 21:54:58 andvar Exp $       */
 
 /*
  * Portions Copyright (C) 2004, 2005, 2008, 2009  Internet Systems Consortium, Inc. ("ISC")
@@ -188,7 +188,7 @@
                        uint16_t                nscount;
                        uint16_t                nstimes[MAXNS]; /*%< ms. */
                        int                     nssocks[MAXNS];
-                       struct __res_state_ext *ext;    /*%< extention for IPv6 */
+                       struct __res_state_ext *ext;    /*%< extension for IPv6 */
                } _ext;
        } _u;
        u_char  *_rnd;                  /*%< PRIVATE: random state */
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/hppa/fenv.c
--- a/lib/libm/arch/hppa/fenv.c Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/hppa/fenv.c Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fenv.c,v 1.4 2017/03/22 23:11:08 chs Exp $     */
+/*     $NetBSD: fenv.c,v 1.5 2021/09/03 21:54:59 andvar Exp $  */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz <das%FreeBSD.ORG@localhost>
@@ -24,7 +24,7 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.4 2017/03/22 23:11:08 chs Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.5 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -333,7 +333,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/i387/fenv.c
--- a/lib/libm/arch/i387/fenv.c Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/i387/fenv.c Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.9 2018/01/25 03:54:21 christos Exp $ */
+/* $NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $ */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz <das%FreeBSD.ORG@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.9 2018/01/25 03:54:21 christos Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -469,7 +469,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/riscv/fenv.c
--- a/lib/libm/arch/riscv/fenv.c        Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/riscv/fenv.c        Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.2 2017/03/22 23:11:08 chs Exp $ */
+/* $NetBSD: fenv.c,v 1.3 2021/09/03 21:54:59 andvar Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.2 2017/03/22 23:11:08 chs Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.3 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -277,7 +277,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int nmask)
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/sparc/fenv.c
--- a/lib/libm/arch/sparc/fenv.c        Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/sparc/fenv.c        Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fenv.c,v 1.2 2017/03/22 23:11:09 chs Exp $     */
+/*     $NetBSD: fenv.c,v 1.3 2021/09/03 21:54:59 andvar Exp $  */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz <das%FreeBSD.ORG@localhost>
@@ -24,7 +24,7 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.2 2017/03/22 23:11:09 chs Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.3 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -312,7 +312,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/sparc64/fenv.c
--- a/lib/libm/arch/sparc64/fenv.c      Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/sparc64/fenv.c      Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fenv.c,v 1.3 2017/03/22 23:11:09 chs Exp $     */
+/*     $NetBSD: fenv.c,v 1.4 2021/09/03 21:54:59 andvar Exp $  */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz <das%FreeBSD.ORG@localhost>
@@ -24,7 +24,7 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.3 2017/03/22 23:11:09 chs Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.4 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -326,7 +326,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)
diff -r 8ae6de59411f -r 46c84b2a0e83 lib/libm/arch/x86_64/fenv.c
--- a/lib/libm/arch/x86_64/fenv.c       Fri Sep 03 21:02:04 2021 +0000
+++ b/lib/libm/arch/x86_64/fenv.c       Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $ */
+/* $NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $ */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -496,7 +496,7 @@
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)
diff -r 8ae6de59411f -r 46c84b2a0e83 libexec/httpd/CHANGES
--- a/libexec/httpd/CHANGES     Fri Sep 03 21:02:04 2021 +0000
+++ b/libexec/httpd/CHANGES     Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.51 2021/08/24 09:53:26 mrg Exp $
+$NetBSD: CHANGES,v 1.52 2021/09/03 21:54:59 andvar Exp $
 
 changes in bozohttpd 20210824:
        o  new "-m tlsversion" option to set the minimum TLS version
@@ -8,7 +8,7 @@
           list of bad options.  should deal with PR#51278.
 
 changes in bozohttpd 20210504:
-       o  don't assume host BUFSIZ is sufficent.  small BUFSIZ leads to
+       o  don't assume host BUFSIZ is sufficient.  small BUFSIZ leads to
           always happens errors in the testsuite.  switch all these buffers
           to be 4KiB sized.  reported by embr <git%liclac.eu@localhost>
 
@@ -282,7 +282,7 @@
 
 changes in bozohttpd 20030313:
        o  deprecate -r flag; make this the default and silently ignore -r now
-       o  add support for file extentions to call CGI programs (from lukem)
+       o  add support for file extensions to call CGI programs (from lukem)
        o  add dynamic support to add new content map entries, allowing both
           new file types and non /cgi-bin CGI programs to be run with the
           new -C "suffix cgihandler" and -M "suffix type encoding encoding11"
diff -r 8ae6de59411f -r 46c84b2a0e83 sys/altq/altq_red.c
--- a/sys/altq/altq_red.c       Fri Sep 03 21:02:04 2021 +0000
+++ b/sys/altq/altq_red.c       Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: altq_red.c,v 1.32 2019/12/26 04:53:11 msaitoh Exp $    */
+/*     $NetBSD: altq_red.c,v 1.33 2021/09/03 21:54:59 andvar Exp $     */
 /*     $KAME: altq_red.c,v 1.20 2005/04/13 03:44:25 suz Exp $  */
 
 /*
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: altq_red.c,v 1.32 2019/12/26 04:53:11 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: altq_red.c,v 1.33 2021/09/03 21:54:59 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_altq.h"
@@ -178,7 +178,7 @@
 #ifdef ALTQ3_COMPAT
 #ifdef ALTQ_FLOWVALVE
 /*
- * flow-valve is an extention to protect red from unresponsive flows
+ * flow-valve is an extension to protect red from unresponsive flows
  * and to promote end-to-end congestion control.
  * flow-valve observes the average drop rates of the flows that have
  * experienced packet drops in the recent past.
diff -r 8ae6de59411f -r 46c84b2a0e83 sys/arch/arm/include/armreg.h
--- a/sys/arch/arm/include/armreg.h     Fri Sep 03 21:02:04 2021 +0000
+++ b/sys/arch/arm/include/armreg.h     Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: armreg.h,v 1.130 2021/01/31 06:18:50 skrll Exp $       */
+/*     $NetBSD: armreg.h,v 1.131 2021/09/03 21:55:00 andvar Exp $      */
 
 /*
  * Copyright (c) 1998, 2001 Ben Harris
@@ -540,7 +540,7 @@
 #define PRRR_TR_NORMAL 2               // Normal Memory
 
 /* ARMv7 MPIDR, Multiprocessor Affinity Register generic format  */
-#define MPIDR_MP               __BIT(31)       /* 1 = Have MP Extention */
+#define MPIDR_MP               __BIT(31)       /* 1 = Have MP Extension */
 #define MPIDR_U                        __BIT(30)       /* 1 = Uni-Processor System */
 #define MPIDR_MT               __BIT(24)       /* 1 = SMT(AFF0 is logical) */
 #define MPIDR_AFF2             __BITS(23,16)   /* Affinity Level 2 */
diff -r 8ae6de59411f -r 46c84b2a0e83 sys/arch/sandpoint/stand/altboot/wm.c
--- a/sys/arch/sandpoint/stand/altboot/wm.c     Fri Sep 03 21:02:04 2021 +0000
+++ b/sys/arch/sandpoint/stand/altboot/wm.c     Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wm.c,v 1.2 2011/01/27 17:38:04 phx Exp $ */
+/* $NetBSD: wm.c,v 1.3 2021/09/03 21:55:00 andvar Exp $ */
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -74,7 +74,7 @@
 #define T2_IFCS                (1U << 25)      /* insert FCS */
 #define T2_RS          (1U << 27)      /* report status */
 #define T2_RPS         (1U << 28)      /* report packet sent */
-#define T2_DEXT                (1U << 29)      /* descriptor extention */
+#define T2_DEXT                (1U << 29)      /* descriptor extension */
 #define T2_VLE         (1U << 30)      /* VLAN enable */
 #define T2_IDE         (1U << 31)      /* interrupt delay enable */
 /* T3 status */
@@ -96,7 +96,7 @@
 #define R3_CE          (1U << 8)       /* CRC error */
 #define R3_SE          (1U << 9)       /* symbol error */
 #define R3_SEQ         (1U << 10)      /* sequence error */
-#define R3_CXE         (1U << 12)      /* carrier extention error */
+#define R3_CXE         (1U << 12)      /* carrier extension error */
 #define R3_TCPE                (1U << 13)      /* TCP csum error found */
 #define R3_IPE         (1U << 14)      /* IP csum error found */
 #define R3_RXE         (1U << 15)      /* Rx data error */
diff -r 8ae6de59411f -r 46c84b2a0e83 sys/dev/acpi/acpica.h
--- a/sys/dev/acpi/acpica.h     Fri Sep 03 21:02:04 2021 +0000
+++ b/sys/dev/acpi/acpica.h     Fri Sep 03 21:54:58 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acpica.h,v 1.6 2018/03/20 12:14:52 bouyer Exp $        */
+/*     $NetBSD: acpica.h,v 1.7 2021/09/03 21:55:00 andvar Exp $        */
 
 /*
  * Copyright 2001 Wasabi Systems, Inc.
@@ -46,7 +46,7 @@
 #include <external/bsd/acpica/dist/include/acpi.h>
 #include <external/bsd/acpica/dist/include/accommon.h>
 
-/* extention to the ACPICA API */
+/* extension to the ACPICA API */
 ACPI_STATUS AcpiOsInstallInterruptHandler_xname(
     UINT32, ACPI_OSD_HANDLER, void *, const char *);
 
diff -r 8ae6de59411f -r 46c84b2a0e83 sys/dev/pci/if_bge.c
--- a/sys/dev/pci/if_bge.c      Fri Sep 03 21:02:04 2021 +0000
+++ b/sys/dev/pci/if_bge.c      Fri Sep 03 21:54:58 2021 +0000



Home | Main Index | Thread Index | Old Index