spelling
authorjsg <jsg@openbsd.org>
Fri, 12 Mar 2021 10:22:46 +0000 (10:22 +0000)
committerjsg <jsg@openbsd.org>
Fri, 12 Mar 2021 10:22:46 +0000 (10:22 +0000)
12 files changed:
sys/crypto/set_key.c
sys/crypto/sha2.c
sys/ddb/db_elf.c
sys/lib/libsa/arp.c
sys/lib/libsa/bcrypt_pbkdf.c
sys/lib/libsa/sha2.c
sys/scsi/cd.c
sys/scsi/ch.c
sys/scsi/mpath_sym.c
sys/scsi/scsi_changer.h
sys/scsi/scsi_disk.h
sys/scsi/st.c

index fcc3174..0f2595d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: set_key.c,v 1.4 2015/12/10 21:00:51 naddy Exp $       */
+/*     $OpenBSD: set_key.c,v 1.5 2021/03/12 10:22:46 jsg Exp $ */
 
 /* lib/des/set_key.c */
 /* Copyright (C) 1995 Eric Young (eay@mincom.oz.au)
@@ -110,7 +110,7 @@ des_is_weak_key(des_cblock (*key))
        int i;
 
        for (i = 0; i < NUM_WEAK_KEY; i++) {
-               /* Added == 0 to comparision, I obviously don't run
+               /* Added == 0 to comparison, I obviously don't run
                 * this section very often :-(, thanks to
                 * engineering@MorningStar.Com for the fix
                 * eay 93/06/29 */
index 63a9ae5..769b732 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sha2.c,v 1.18 2015/03/14 03:38:46 jsg Exp $   */
+/*     $OpenBSD: sha2.c,v 1.19 2021/03/12 10:22:46 jsg Exp $   */
 
 /*
  * FILE:       sha2.c
@@ -64,7 +64,7 @@
  * Please make sure that your system defines BYTE_ORDER.  If your
  * architecture is little-endian, make sure it also defines
  * LITTLE_ENDIAN and that the two (BYTE_ORDER and LITTLE_ENDIAN) are
- * equivilent.
+ * equivalent.
  *
  * If your system does not define the above, then you can do so by
  * hand like this:
index 0a7a43a..2eeb183 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_elf.c,v 1.31 2020/10/15 03:14:00 deraadt Exp $     */
+/*     $OpenBSD: db_elf.c,v 1.32 2021/03/12 10:22:46 jsg Exp $ */
 /*     $NetBSD: db_elf.c,v 1.13 2000/07/07 21:55:18 jhawk Exp $        */
 
 /*-
@@ -54,7 +54,7 @@ Elf_Sym               *db_elf_sym_lookup(char *);
  * symsize:    size of symbol table
  * symtab:     pointer to start of symbol table
  * esymtab:    pointer to end of string table, for checking - rounded up to
- *                 integer boundry
+ *                 integer boundary
  */
 int
 db_elf_sym_init(int symsize, void *symtab, void *esymtab, const char *name)
index 8bef394..12a7094 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: arp.c,v 1.12 2014/07/13 15:31:20 mpi Exp $    */
+/*     $OpenBSD: arp.c,v 1.13 2021/03/12 10:22:46 jsg Exp $    */
 /*     $NetBSD: arp.c,v 1.15 1996/10/13 02:28:58 christos Exp $        */
 
 /*
@@ -132,7 +132,7 @@ arpwhohas(struct iodesc *d, struct in_addr addr)
        if (debug) {
                printf("arp: response from %s\n",
                    ether_sprintf(rbuf.eh.ether_shost));
-               printf("arp: cacheing %s --> %s\n",
+               printf("arp: caching %s --> %s\n",
                    inet_ntoa(addr), ether_sprintf(ah->arp_sha));
        }
 #endif
index df0e34c..07c1461 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcrypt_pbkdf.c,v 1.2 2020/07/09 19:17:19 millert Exp $ */
+/* $OpenBSD: bcrypt_pbkdf.c,v 1.3 2021/03/12 10:22:46 jsg Exp $ */
 /*
  * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
  *
@@ -31,7 +31,7 @@
  * function with the following modifications:
  * 1. The input password and salt are preprocessed with SHA512.
  * 2. The output length is expanded to 256 bits.
- * 3. Subsequently the magic string to be encrypted is lengthened and modifed
+ * 3. Subsequently the magic string to be encrypted is lengthened and modified
  *    to "OxychromaticBlowfishSwatDynamite"
  * 4. The hash function is defined to perform 64 rounds of initial state
  *    expansion. (More rounds are performed by iterating the hash.)
index 7e6feaf..eacbc49 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sha2.c,v 1.2 2017/05/27 15:32:51 naddy Exp $  */
+/*     $OpenBSD: sha2.c,v 1.3 2021/03/12 10:22:46 jsg Exp $    */
 
 /*
  * FILE:       sha2.c
@@ -66,7 +66,7 @@
  * Please make sure that your system defines BYTE_ORDER.  If your
  * architecture is little-endian, make sure it also defines
  * LITTLE_ENDIAN and that the two (BYTE_ORDER and LITTLE_ENDIAN) are
- * equivilent.
+ * equivalent.
  *
  * If your system does not define the above, then you can do so by
  * hand like this:
index b5185a1..0a4b74b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd.c,v 1.262 2020/09/22 19:32:53 krw Exp $    */
+/*     $OpenBSD: cd.c,v 1.263 2021/03/12 10:22:46 jsg Exp $    */
 /*     $NetBSD: cd.c,v 1.100 1997/04/02 02:29:30 mycroft Exp $ */
 
 /*
@@ -2082,7 +2082,7 @@ cd_interpret_sense(struct scsi_xfer *xs)
         * report "Unit Becoming Ready" when loading media and can
         * take a long time.  Rather than having a massive timeout for
         * all operations (which would cause other problems), we allow
-        * operations to wait (but be interruptable with Ctrl-C)
+        * operations to wait (but be interruptible with Ctrl-C)
         * forever as long as the drive is reporting that it is
         * becoming ready.  All other cases of not being ready are
         * handled by the default handler.
index 1d8781f..672bd95 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ch.c,v 1.67 2020/09/22 19:32:53 krw Exp $     */
+/*     $OpenBSD: ch.c,v 1.68 2021/03/12 10:22:46 jsg Exp $     */
 /*     $NetBSD: ch.c,v 1.26 1997/02/21 22:06:52 thorpej Exp $  */
 
 /*
@@ -774,7 +774,7 @@ ch_interpret_sense(struct scsi_xfer *xs)
         * rescan their state (i.e. when the door got opened) and can
         * take a long time for large units. Rather than having a
         * massive timeout for all operations (which would cause other
-        * problems) we allow changers to wait (but be interruptable
+        * problems) we allow changers to wait (but be interruptible
         * with Ctrl-C) forever as long as they are reporting that they
         * are becoming ready.  all other cases are handled as per the
         * default.
index 11f5e22..572b583 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mpath_sym.c,v 1.25 2020/06/30 18:43:37 krw Exp $ */
+/*     $OpenBSD: mpath_sym.c,v 1.26 2021/03/12 10:22:46 jsg Exp $ */
 
 /*
  * Copyright (c) 2010 David Gwynne <dlg@openbsd.org>
@@ -143,7 +143,7 @@ sym_attach(struct device *parent, struct device *self, void *aux)
 
        printf("\n");
 
-       /* check if we're an assymetric access device */
+       /* check if we're an asymmetric access device */
        for (i = 0; i < nitems(asym_devices); i++) {
                s = &asym_devices[i];
 
index 7ad2f1c..2db9c97 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: scsi_changer.h,v 1.8 2019/11/29 14:06:21 krw Exp $    */
+/*     $OpenBSD: scsi_changer.h,v 1.9 2021/03/12 10:22:46 jsg Exp $    */
 /*     $NetBSD: scsi_changer.h,v 1.7 1996/04/03 00:25:48 thorpej Exp $ */
 
 /*
@@ -273,7 +273,7 @@ struct read_element_status_descriptor {
 /*
  * Device capabilities page.
  *
- * This page defines characteristics of the elemenet types in the
+ * This page defines characteristics of the element types in the
  * medium changer device.
  *
  * Note in the definitions below, the following abbreviations are
@@ -333,7 +333,7 @@ struct page_device_capabilities {
 };
 
 /*
- * Medium changer elemement address assignment page.
+ * Medium changer element address assignment page.
  *
  * Some of these fields can be a little confusing, so an explanation
  * is in order.
index 31f2d1d..52e7f01 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: scsi_disk.h,v 1.41 2020/09/01 12:17:53 krw Exp $      */
+/*     $OpenBSD: scsi_disk.h,v 1.42 2021/03/12 10:22:46 jsg Exp $      */
 /*     $NetBSD: scsi_disk.h,v 1.10 1996/07/05 16:19:05 christos Exp $  */
 
 /*
@@ -113,7 +113,7 @@ struct scsi_initialization_pattern_descriptor {
 };
 
 /*
- * Defect desciptors.  These are used as the defect lists in the FORMAT UNIT
+ * Defect descriptors.  These are used as the defect lists in the FORMAT UNIT
  * and READ DEFECT DATA commands, and as the translate page of the
  * SEND DIAGNOSTIC and RECEIVE DIAGNOSTIC RESULTS commands.
  */
index f30eea6..2f73f79 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: st.c,v 1.185 2020/09/22 19:32:53 krw Exp $    */
+/*     $OpenBSD: st.c,v 1.186 2021/03/12 10:22:46 jsg Exp $    */
 /*     $NetBSD: st.c,v 1.71 1997/02/21 23:03:49 thorpej Exp $  */
 
 /*
@@ -182,7 +182,7 @@ struct st_softc {
        short mt_resid;         /* last (short) resid                 */
        short mt_erreg;         /* last error (sense key) seen        */
 
-       struct scsi_link *sc_link;      /* our link to the adpter etc.        */
+       struct scsi_link *sc_link;      /* our link to the adapter etc.       */
 
        int blkmin;             /* min blk size                       */
        int blkmax;             /* max blk size                       */
@@ -496,7 +496,7 @@ st_mount_tape(struct st_softc *st, int flags)
         * Throw another dummy instruction to catch
         * 'Unit attention' errors. Some drives appear to give
         * these after doing a Load instruction.
-        * (noteably some DAT drives)
+        * (notably some DAT drives)
         */
        /* XXX */
        scsi_test_unit_ready(link, TEST_READY_RETRIES, SCSI_SILENT);
@@ -1865,7 +1865,7 @@ st_interpret_sense(struct scsi_xfer *xs)
         * drives report "Unit Becoming Ready" when loading media, etc.
         * and can take a long time.  Rather than having a massive timeout
         * for all operations (which would cause other problems) we allow
-        * operations to wait (but be interruptable with Ctrl-C) forever
+        * operations to wait (but be interruptible with Ctrl-C) forever
         * as long as the drive is reporting that it is becoming ready.
         * all other cases are handled as per the default.
         */