Source-Changes-HG archive

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

[src/trunk]: src fix typos in word "successful".



details:   https://anonhg.NetBSD.org/src/rev/8308afce1c1f
branches:  trunk
changeset: 986269:8308afce1c1f
user:      andvar <andvar%NetBSD.org@localhost>
date:      Thu Sep 16 22:19:10 2021 +0000

description:
fix typos in word "successful".

diffstat:

 lib/libp2k/p2k.3                       |  4 ++--
 lib/libresolv/dst_api.c                |  6 +++---
 lib/librumpclient/rumpclient.c         |  6 +++---
 lib/libukfs/ukfs.3                     |  4 ++--
 sys/arch/arm/omap/omap_edma.c          |  6 +++---
 sys/arch/arm/ti/ti_edma.c              |  6 +++---
 sys/arch/shark/shark/i8042.c           |  6 +++---
 sys/dev/ic/aic79xx.c                   |  6 +++---
 sys/dev/ic/aic7xxx.c                   |  8 ++++----
 sys/dev/smbios.c                       |  6 +++---
 sys/dev/usb/umass.c                    |  6 +++---
 sys/fs/nilfs/nilfs_vfsops.c            |  6 +++---
 sys/fs/udf/udf_subr.c                  |  6 +++---
 sys/fs/udf/udf_vfsops.c                |  6 +++---
 sys/kern/kern_physio.c                 |  6 +++---
 sys/net/bpf.c                          |  6 +++---
 sys/stand/efiboot/smbios.c             |  6 +++---
 tests/dev/md/h_mdserv.c                |  4 ++--
 tests/fs/puffs/h_dtfs/dtfs_subr.c      |  4 ++--
 tests/fs/puffs/t_fuzz.c                |  4 ++--
 tests/lib/librumphijack/h_client.c     |  8 ++++----
 tests/sbin/fsck_ffs/t_enable_quotas.sh |  6 +++---
 usr.sbin/syslogd/tls.c                 |  6 +++---
 23 files changed, 66 insertions(+), 66 deletions(-)

diffs (truncated from 586 to 300 lines):

diff -r d586047ba18e -r 8308afce1c1f lib/libp2k/p2k.3
--- a/lib/libp2k/p2k.3  Thu Sep 16 21:29:41 2021 +0000
+++ b/lib/libp2k/p2k.3  Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
 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
diff -r d586047ba18e -r 8308afce1c1f lib/libresolv/dst_api.c
--- a/lib/libresolv/dst_api.c   Thu Sep 16 21:29:41 2021 +0000
+++ b/lib/libresolv/dst_api.c   Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
  *           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
  *     &gt;0      success FINAL (sign) operation
  *     &lt;0      failure
  */
diff -r d586047ba18e -r 8308afce1c1f lib/librumpclient/rumpclient.c
--- a/lib/librumpclient/rumpclient.c    Thu Sep 16 21:29:41 2021 +0000
+++ b/lib/librumpclient/rumpclient.c    Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
                                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)
diff -r d586047ba18e -r 8308afce1c1f lib/libukfs/ukfs.3
--- a/lib/libukfs/ukfs.3        Thu Sep 16 21:29:41 2021 +0000
+++ b/lib/libukfs/ukfs.3        Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
 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 ,
diff -r d586047ba18e -r 8308afce1c1f sys/arch/arm/omap/omap_edma.c
--- a/sys/arch/arm/omap/omap_edma.c     Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/arch/arm/omap/omap_edma.c     Thu Sep 16 22:19:10 2021 +0000
@@ -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@localhost>
@@ -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 @@
 }
 
 /*
- * 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
diff -r d586047ba18e -r 8308afce1c1f sys/arch/arm/ti/ti_edma.c
--- a/sys/arch/arm/ti/ti_edma.c Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/arch/arm/ti/ti_edma.c Thu Sep 16 22:19:10 2021 +0000
@@ -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@localhost>
@@ -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 @@
 }
 
 /*
- * 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
diff -r d586047ba18e -r 8308afce1c1f sys/arch/shark/shark/i8042.c
--- a/sys/arch/shark/shark/i8042.c      Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/arch/shark/shark/i8042.c      Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
                 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;
diff -r d586047ba18e -r 8308afce1c1f sys/dev/ic/aic79xx.c
--- a/sys/dev/ic/aic79xx.c      Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/dev/ic/aic79xx.c      Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
        }
 
        /*
-        * Note that we were successfull
+        * Note that we were successful
         */
        return (0);
 
diff -r d586047ba18e -r 8308afce1c1f sys/dev/ic/aic7xxx.c
--- a/sys/dev/ic/aic7xxx.c      Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/dev/ic/aic7xxx.c      Thu Sep 16 22:19:10 2021 +0000
@@ -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_outb(ahc, NEXT_QUEUED_SCB, ahc->next_queued_scb->hscb->tag);
 
        /*
-        * Note that we were successfull
+        * Note that we were successful
         */
        return (0);
 
diff -r d586047ba18e -r 8308afce1c1f sys/dev/smbios.c
--- a/sys/dev/smbios.c  Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/dev/smbios.c  Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
        /*
         * 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.
         */
diff -r d586047ba18e -r 8308afce1c1f sys/dev/usb/umass.c
--- a/sys/dev/usb/umass.c       Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/dev/usb/umass.c       Thu Sep 16 22:19:10 2021 +0000
@@ -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 @@
                        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;
 
diff -r d586047ba18e -r 8308afce1c1f sys/fs/nilfs/nilfs_vfsops.c
--- a/sys/fs/nilfs/nilfs_vfsops.c       Thu Sep 16 21:29:41 2021 +0000
+++ b/sys/fs/nilfs/nilfs_vfsops.c       Thu Sep 16 22:19:10 2021 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index