Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/puffs/mount_psshfs fix typos in word "successfully"...



details:   https://anonhg.NetBSD.org/src/rev/d586047ba18e
branches:  trunk
changeset: 986268:d586047ba18e
user:      andvar <andvar%NetBSD.org@localhost>
date:      Thu Sep 16 21:29:41 2021 +0000

description:
fix typos in word "successfully", mainly s/succesfully/successfully/.

diffstat:

 common/lib/libc/gen/rb.c                  |   8 ++++----
 lib/libc/gdtoa/test/README                |   2 +-
 libexec/identd/identd.c                   |   8 ++++----
 sys/arch/arm/imx/imx23_ssp.c              |   4 ++--
 sys/arch/i386/pci/pci_intr_fixup.c        |   6 +++---
 sys/dev/microcode/aic7xxx/aic79xx.seq     |   4 ++--
 sys/dev/pci/amdpm_smbusreg.h              |   4 ++--
 sys/dev/pci/if_ena.c                      |   4 ++--
 sys/kern/kern_module.c                    |   6 +++---
 sys/rump/librump/rumpkern/vm.c            |   6 +++---
 sys/ufs/chfs/ebh_media.h                  |  10 +++++-----
 tests/fs/vfs/t_vnops.c                    |   4 ++--
 usr.bin/rump_dhcpclient/rump.dhcpclient.1 |   4 ++--
 usr.sbin/puffs/mount_psshfs/node.c        |   6 +++---
 14 files changed, 38 insertions(+), 38 deletions(-)

diffs (truncated from 322 to 300 lines):

diff -r 6da84d5cf284 -r d586047ba18e common/lib/libc/gen/rb.c
--- a/common/lib/libc/gen/rb.c  Thu Sep 16 20:17:46 2021 +0000
+++ b/common/lib/libc/gen/rb.c  Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $    */
+/*     $NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $   */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -45,10 +45,10 @@
 #define KASSERT(s)     do { } while (/*CONSTCOND*/ 0)
 #define        __rbt_unused    __unused
 #endif
-__RCSID("$NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $");
+__RCSID("$NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $");
 #else
 #include <lib/libkern/libkern.h>
-__KERNEL_RCSID(0, "$NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $");
 #ifndef DIAGNOSTIC
 #define        __rbt_unused    __unused
 #else
@@ -313,7 +313,7 @@
                KASSERT(rb_tree_check_node(rbt, self, NULL, true));
        }
 
-       /* Succesfully inserted, return our node pointer. */
+       /* Successfully inserted, return our node pointer. */
        return object;
 }
 
diff -r 6da84d5cf284 -r d586047ba18e lib/libc/gdtoa/test/README
--- a/lib/libc/gdtoa/test/README        Thu Sep 16 20:17:46 2021 +0000
+++ b/lib/libc/gdtoa/test/README        Thu Sep 16 21:29:41 2021 +0000
@@ -69,7 +69,7 @@
 -DUSE_MY_LOCALE (when ../gdtoa.a is compiled with -DUSE_LOCALE)
 to test multi-byte decimal points.
 
-If in the parent directory, you have sucessfully invoked "make Printf"
+If in the parent directory, you have successfully invoked "make Printf"
 to add a "printf" (called Printf and accessed via ../stdio1.h), then
 here you can use "make pf_test" and (if you have both a 64-bit long
 double and a 113-bit "quad" double type) "make pf_testLq" for a brief
diff -r 6da84d5cf284 -r d586047ba18e libexec/identd/identd.c
--- a/libexec/identd/identd.c   Thu Sep 16 20:17:46 2021 +0000
+++ b/libexec/identd/identd.c   Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: identd.c,v 1.36 2016/12/10 22:08:13 christos Exp $ */
+/* $NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $ */
 
 /*
  * identd.c - TCP/IP Ident protocol server.
@@ -8,7 +8,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: identd.c,v 1.36 2016/12/10 22:08:13 christos Exp $");
+__RCSID("$NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/socket.h>
@@ -441,7 +441,7 @@
                            forward(fd, (struct sockaddr *)&nat_addr,
                            nat_lport, fport, lport)) {
                                maybe_syslog(LOG_INFO,
-                                   "Succesfully forwarded the request to %s",
+                                   "Successfully forwarded the request to %s",
                                    gethost((struct sockaddr *)&nat_addr));
                                return 0;
                        }
@@ -796,7 +796,7 @@
        return rc;
 }
 
-/* Forward ident queries. Returns 1 when succesful, or zero if not. */
+/* Forward ident queries. Returns 1 when successful, or zero if not. */
 static int
 forward(int fd, struct sockaddr *nat_addr, int nat_lport, int fport, int lport)
 {
diff -r 6da84d5cf284 -r d586047ba18e sys/arch/arm/imx/imx23_ssp.c
--- a/sys/arch/arm/imx/imx23_ssp.c      Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/arch/arm/imx/imx23_ssp.c      Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/* $Id: imx23_ssp.c,v 1.6 2021/08/07 16:18:44 thorpej Exp $ */
+/* $Id: imx23_ssp.c,v 1.7 2021/09/16 21:29:41 andvar Exp $ */
 
 /*
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -332,7 +332,7 @@
                return;
        }
 
-       /* Device instance was succesfully attached. */
+       /* Device instance was successfully attached. */
        if (aa->aa_addr == HW_SSP1_BASE)
                ssp_attached |= SSP1_ATTACHED;
        if (aa->aa_addr == HW_SSP2_BASE)
diff -r 6da84d5cf284 -r d586047ba18e sys/arch/i386/pci/pci_intr_fixup.c
--- a/sys/arch/i386/pci/pci_intr_fixup.c        Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/arch/i386/pci/pci_intr_fixup.c        Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_intr_fixup.c,v 1.51 2019/11/10 21:16:28 chs Exp $  */
+/*     $NetBSD: pci_intr_fixup.c,v 1.52 2021/09/16 21:29:41 andvar Exp $       */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_intr_fixup.c,v 1.51 2019/11/10 21:16:28 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_intr_fixup.c,v 1.52 2021/09/16 21:29:41 andvar Exp $");
 
 #include "opt_pcibios.h"
 #include "opt_pcifixup.h"
@@ -585,7 +585,7 @@
                        rv = 1;
                } else {
                        /*
-                        * Succssfully routed interrupt.  Mark this as
+                        * Successfully routed interrupt.  Mark this as
                         * a PCI interrupt.
                         */
                        *pciirq |= (1 << l->irq);
diff -r 6da84d5cf284 -r d586047ba18e sys/dev/microcode/aic7xxx/aic79xx.seq
--- a/sys/dev/microcode/aic7xxx/aic79xx.seq     Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/dev/microcode/aic7xxx/aic79xx.seq     Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic79xx.seq,v 1.13 2021/09/03 22:33:17 andvar Exp $    */
+/*     $NetBSD: aic79xx.seq,v 1.14 2021/09/16 21:29:41 andvar Exp $    */
 
 /*
  * Adaptec U320 device driver firmware for Linux and FreeBSD.
@@ -177,7 +177,7 @@
 scbdma_tohost_done:
        test    CCSCBCTL, CCARREN jz fill_qoutfifo_dmadone;
        /*
-        * An SCB has been succesfully uploaded to the host.
+        * An SCB has been successfully uploaded to the host.
         * If the SCB was uploaded for some reason other than
         * bad SCSI status (currently only for underruns), we
         * queue the SCB for normal completion.  Otherwise, we
diff -r 6da84d5cf284 -r d586047ba18e sys/dev/pci/amdpm_smbusreg.h
--- a/sys/dev/pci/amdpm_smbusreg.h      Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/dev/pci/amdpm_smbusreg.h      Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: amdpm_smbusreg.h,v 1.2 2009/02/03 16:27:13 pgoyette Exp $ */
+/*     $NetBSD: amdpm_smbusreg.h,v 1.3 2021/09/16 21:29:41 andvar Exp $ */
 
 /*
  * Copyright (c) 2005 Anil Gopinath (anil_public%yahoo.com@localhost)
@@ -47,7 +47,7 @@
 #define AMDPM_8111_SMBUS_GSR_RB      0x000A /* GSR contents to read a byte */
 #define AMDPM_8111_SMBUS_GSR_WB      0x000A /* GSR contents to write a byte */
 
-#define AMDPM_8111_GSR_CYCLE_DONE    0x0010 /* indicates cycle done successfuly */
+#define AMDPM_8111_GSR_CYCLE_DONE    0x0010 /* indicates cycle done successfully */
 
 #define AMDPM_8111_SMBUS_READ        0x0001 /* smbus read cycle indicator */
 #define AMDPM_8111_SMBUS_RX          0x0001 /* smbus receive cycle indicator */
diff -r 6da84d5cf284 -r d586047ba18e sys/dev/pci/if_ena.c
--- a/sys/dev/pci/if_ena.c      Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/dev/pci/if_ena.c      Thu Sep 16 21:29:41 2021 +0000
@@ -36,7 +36,7 @@
 #if 0
 __FBSDID("$FreeBSD: head/sys/dev/ena/ena.c 333456 2018-05-10 09:37:54Z mw $");
 #endif
-__KERNEL_RCSID(0, "$NetBSD: if_ena.c,v 1.30 2021/07/24 21:31:37 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ena.c,v 1.31 2021/09/16 21:29:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -2816,7 +2816,7 @@
                return (ENOMEM);
        }
 
-       /* If mbuf was collapsed succesfully, original mbuf is released. */
+       /* If mbuf was collapsed successfully, original mbuf is released. */
        *mbuf = collapsed_mbuf;
 
        return (0);
diff -r 6da84d5cf284 -r d586047ba18e sys/kern/kern_module.c
--- a/sys/kern/kern_module.c    Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/kern/kern_module.c    Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_module.c,v 1.152 2021/06/11 23:41:47 pgoyette Exp $       */
+/*     $NetBSD: kern_module.c,v 1.153 2021/09/16 21:29:42 andvar Exp $ */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.152 2021/06/11 23:41:47 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.153 2021/09/16 21:29:42 andvar Exp $");
 
 #define _MODULE_INTERNAL
 
@@ -897,7 +897,7 @@
                /*
                 * XXX: We'd like to panic here, but currently in some
                 * cases (such as nfsserver + nfs), the dependee can be
-                * succesfully linked without the dependencies.
+                * successfully linked without the dependencies.
                 */
                module_error("built-in module %s can't find builtin "
                    "dependency `%s'", pmod->mod_info->mi_name, name);
diff -r 6da84d5cf284 -r d586047ba18e sys/rump/librump/rumpkern/vm.c
--- a/sys/rump/librump/rumpkern/vm.c    Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/rump/librump/rumpkern/vm.c    Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm.c,v 1.191 2020/12/05 19:08:50 chs Exp $     */
+/*     $NetBSD: vm.c,v 1.192 2021/09/16 21:29:42 andvar Exp $  */
 
 /*
  * Copyright (c) 2007-2011 Antti Kantee.  All Rights Reserved.
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.191 2020/12/05 19:08:50 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.192 2021/09/16 21:29:42 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -110,7 +110,7 @@
 
 /*
  * Try to free two pages worth of pages from objects.
- * If this succesfully frees a full page cache page, we'll
+ * If this successfully frees a full page cache page, we'll
  * free the released page plus PAGE_SIZE/sizeof(vm_page).
  */
 #define PAGEDAEMON_OBJCHUNK (2*PAGE_SIZE / sizeof(struct vm_page))
diff -r 6da84d5cf284 -r d586047ba18e sys/ufs/chfs/ebh_media.h
--- a/sys/ufs/chfs/ebh_media.h  Thu Sep 16 20:17:46 2021 +0000
+++ b/sys/ufs/chfs/ebh_media.h  Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ebh_media.h,v 1.1 2011/11/24 15:51:32 ahoka Exp $      */
+/*     $NetBSD: ebh_media.h,v 1.2 2021/09/16 21:29:42 andvar Exp $     */
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -85,10 +85,10 @@
  *
  * @lid contains the logical block reference but only the first 31 bit (0-30) is
  * used. The 32th bit is for marking a lid dirty (marked for recovery purposes).
- * If a new eraseblock is succesfully assigned with the same lid then the lid of
- * the old one is zeroed. If power failure happened during this operation then
- * the recovery detects that there is two eraseblock with the same lid, but one
- * of them is marked (the old one).
+ * If a new eraseblock is successfully assigned with the same lid then the lid
+ * of the old one is zeroed. If power failure happened during this operation
+ * then the recovery detects that there are two eraseblocks with the same lid,
+ * but one of them is marked (the old one).
  *
  * Invalidated eraseblock header means that the @crc and @lid is set to 0.
  */
diff -r 6da84d5cf284 -r d586047ba18e tests/fs/vfs/t_vnops.c
--- a/tests/fs/vfs/t_vnops.c    Thu Sep 16 20:17:46 2021 +0000
+++ b/tests/fs/vfs/t_vnops.c    Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_vnops.c,v 1.60 2021/08/19 20:56:36 andvar Exp $      */
+/*     $NetBSD: t_vnops.c,v 1.61 2021/09/16 21:29:42 andvar Exp $      */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -195,7 +195,7 @@
 
        rv = rump_sys_rmdir(pb);
        if (rv != -1 || errno != ENOTEMPTY)
-               atf_tc_fail("non-empty directory removed succesfully");
+               atf_tc_fail("non-empty directory removed successfully");
 
        if (rump_sys_unlink(pb2) == -1)
                atf_tc_fail_errno("cannot remove dir/file");
diff -r 6da84d5cf284 -r d586047ba18e usr.bin/rump_dhcpclient/rump.dhcpclient.1
--- a/usr.bin/rump_dhcpclient/rump.dhcpclient.1 Thu Sep 16 20:17:46 2021 +0000
+++ b/usr.bin/rump_dhcpclient/rump.dhcpclient.1 Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: rump.dhcpclient.1,v 1.3 2011/02/14 17:30:54 pooka Exp $
+.\"    $NetBSD: rump.dhcpclient.1,v 1.4 2021/09/16 21:29:42 andvar Exp $
 .\"
 .\" Copyright (c) 2011 Antti Kantee.  All rights reserved.
 .\"
@@ -45,7 +45,7 @@
 .Nm
 does not save DNS resolver information.
 .Pp
-After having succesfully configured networking,
+After having successfully configured networking,
 .Nm
 prints out the networking configuration and lease time and exits.
 .Pp
diff -r 6da84d5cf284 -r d586047ba18e usr.sbin/puffs/mount_psshfs/node.c
--- a/usr.sbin/puffs/mount_psshfs/node.c        Thu Sep 16 20:17:46 2021 +0000
+++ b/usr.sbin/puffs/mount_psshfs/node.c        Thu Sep 16 21:29:41 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: node.c,v 1.65 2016/10/07 21:09:57 christos Exp $       */



Home | Main Index | Thread Index | Old Index