fix various typos in comments, mainly immediatly/immediately/,

as well shared and recently fixed typos in OpenBSD code by Jonathan Grey.
This commit is contained in:
andvar 2022-02-23 21:54:40 +00:00
parent 1362f06b78
commit 1daa1a7b85
23 changed files with 66 additions and 66 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: perfuse.c,v 1.43 2021/08/08 20:54:48 nia Exp $ */
/* $NetBSD: perfuse.c,v 1.44 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@ -708,7 +708,7 @@ perfuse_fsreq(struct puffs_usermount *pu, perfuse_msg_t *pm)
foh = GET_OUTHDR(ps, pm);
/*
* There are some operations we may use in a Fire and Forget wey,
* There are some operations we may use in a Fire and Forget way,
* because the kernel does not await a reply, but FUSE still
* sends a reply. This happens for fsyc, setattr (for metadata
* associated with a fsync) and write (for VOP_PUTPAGES). Ignore
@ -718,7 +718,7 @@ perfuse_fsreq(struct puffs_usermount *pu, perfuse_msg_t *pm)
case 0:
break;
case -ENOENT:
/* File disapeared during a FAF operation */
/* File disappeared during a FAF operation */
break;
case -ENOTCONN: /* FALLTHROUGH */
case -EAGAIN: /* FALLTHROUGH */

View File

@ -1,4 +1,4 @@
/* $NetBSD: encrypt.c,v 1.18 2019/01/05 08:55:58 maya Exp $ */
/* $NetBSD: encrypt.c,v 1.19 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -33,7 +33,7 @@
#if 0
static char sccsid[] = "@(#)encrypt.c 8.2 (Berkeley) 5/30/95";
#else
__RCSID("$NetBSD: encrypt.c,v 1.18 2019/01/05 08:55:58 maya Exp $");
__RCSID("$NetBSD: encrypt.c,v 1.19 2022/02/23 21:54:40 andvar Exp $");
#endif /* not lint */
/*
@ -414,7 +414,7 @@ encrypt_send_support(void)
if (str_suplen) {
/*
* If the user has requested that decryption start
* immediatly, then send a "REQUEST START" before
* immediately, then send a "REQUEST START" before
* we negotiate the type.
*/
if (!Server && autodecrypt)

View File

@ -1,4 +1,4 @@
/* $NetBSD: pic_distopenpic.c,v 1.13 2020/07/06 11:02:44 rin Exp $ */
/* $NetBSD: pic_distopenpic.c,v 1.14 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2008 Tim Rightnour
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pic_distopenpic.c,v 1.13 2020/07/06 11:02:44 rin Exp $");
__KERNEL_RCSID(0, "$NetBSD: pic_distopenpic.c,v 1.14 2022/02/23 21:54:40 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_openpic.h"
@ -121,7 +121,7 @@ setup_distributed_openpic(void *addr, int nrofisus, void **isu, int *maps)
openpic_set_priority(0, 0);
/* clear all pending interrunts */
/* clear all pending interrupts */
for (irq = 0; irq < pic->pic_numintrs; irq++) {
openpic_read_irq(0);
openpic_eoi(0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: pic_mpcsoc.c,v 1.8 2020/07/06 09:34:18 rin Exp $ */
/* $NetBSD: pic_mpcsoc.c,v 1.9 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2007 Michael Lorenz
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pic_mpcsoc.c,v 1.8 2020/07/06 09:34:18 rin Exp $");
__KERNEL_RCSID(0, "$NetBSD: pic_mpcsoc.c,v 1.9 2022/02/23 21:54:40 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_interrupt.h"
@ -131,7 +131,7 @@ setup_mpcpic(void *addr)
openpic_write(OPENPIC_SPURIOUS_VECTOR, 0xff);
openpic_set_priority(0, 0);
/* clear all pending interrunts */
/* clear all pending interrupts */
for (irq = 0; irq < self->pic_numintrs; irq++) {
openpic_read_irq(0);
openpic_eoi(0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: pic_openpic.c,v 1.19 2020/07/13 00:04:03 rin Exp $ */
/* $NetBSD: pic_openpic.c,v 1.20 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2007 Michael Lorenz
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pic_openpic.c,v 1.19 2020/07/13 00:04:03 rin Exp $");
__KERNEL_RCSID(0, "$NetBSD: pic_openpic.c,v 1.20 2022/02/23 21:54:40 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_multiprocessor.h"
@ -112,7 +112,7 @@ setup_openpic(void *addr, int passthrough)
openpic_set_priority(0, 0);
/* clear all pending interrunts */
/* clear all pending interrupts */
for (irq = 0; irq < pic->pic_numintrs; irq++) {
openpic_read_irq(0);
openpic_eoi(0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.60 2020/08/03 21:53:25 uwe Exp $ */
/* $NetBSD: cpu.h,v 1.61 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2002, 2019 The NetBSD Foundation, Inc. All rights reserved.
@ -186,7 +186,7 @@ do { \
/*
* Switch from P2 (uncached) back to P1 (cached). We need to be
* running on P2 to access cache control, memory-mapped cache and TLB
* arrays, etc. and after touching them at least 8 instructinos are
* arrays, etc. and after touching them at least 8 instructions are
* necessary before jumping to P1, so provide that padding here.
*/
#define RUN_P1 \

View File

@ -1,4 +1,4 @@
/* $NetBSD: mmu.h,v 1.10 2008/04/28 20:23:35 martin Exp $ */
/* $NetBSD: mmu.h,v 1.11 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@ -41,7 +41,7 @@
* Call after exception vector was installed.
*
* TLB access ops.
* sh_tlb_invalidate_addr invalidate TLB entris for given
* sh_tlb_invalidate_addr invalidate TLB entries for given
* virtual addr with ASID.
* sh_tlb_invalidate_asid invalidate TLB entries for given ASID.
* sh_tlb_invalidate_all invalidate all non-wired TLB entries.

View File

@ -1,4 +1,4 @@
/* $NetBSD: sh3_machdep.c,v 1.111 2021/11/01 05:07:16 thorpej Exp $ */
/* $NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2002 The NetBSD Foundation, Inc.
@ -65,7 +65,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.111 2021/11/01 05:07:16 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@ -162,7 +162,7 @@ sh_cpu_init(int arch, int product)
/* Hardclock, RTC initialize. */
machine_clock_init();
/* ICU initiailze. */
/* ICU initialize. */
curcpu()->ci_idepth = -1;
intc_init();

View File

@ -1,4 +1,4 @@
/* $NetBSD: psycho.c,v 1.136 2022/01/21 19:14:14 thorpej Exp $ */
/* $NetBSD: psycho.c,v 1.137 2022/02/23 21:54:40 andvar Exp $ */
/*
* Copyright (c) 1999, 2000 Matthew R. Green
@ -55,7 +55,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: psycho.c,v 1.136 2022/01/21 19:14:14 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: psycho.c,v 1.137 2022/02/23 21:54:40 andvar Exp $");
#include "opt_ddb.h"
@ -175,7 +175,7 @@ CFATTACH_DECL_NEW(psycho, sizeof(struct psycho_softc),
* "sabre" is the UltraSPARC IIi onboard UPA to PCI bridge. It manages a
* single PCI bus and does not have a streaming buffer. It often has an APB
* (advanced PCI bridge) connected to it, which was designed specifically for
* the IIi. The APB let's the IIi handle two independednt PCI buses, and
* the IIi. The APB lets the IIi handle two independent PCI buses, and
* appears as two "simba"'s underneath the sabre.
*
* "psycho" and "psycho+" is a dual UPA to PCI bridge. It sits on the UPA bus

View File

@ -1,4 +1,4 @@
/* $NetBSD: ata.c,v 1.165 2021/11/12 06:53:49 skrll Exp $ */
/* $NetBSD: ata.c,v 1.166 2022/02/23 21:54:40 andvar Exp $ */
/*
* Copyright (c) 1998, 2001 Manuel Bouyer. All rights reserved.
@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.165 2021/11/12 06:53:49 skrll Exp $");
__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.166 2022/02/23 21:54:40 andvar Exp $");
#include "opt_ata.h"
@ -960,7 +960,7 @@ ata_dmaerr(struct ata_drive_datas *drvp, int flags)
/*
* Downgrade decision: if we get NERRS_MAX in NXFER.
* We start with n_dmaerrs set to NERRS_MAX-1 so that the
* first error within the first NXFER ops will immediatly trigger
* first error within the first NXFER ops will immediately trigger
* a downgrade.
* If we got an error and n_xfers is bigger than NXFER reset counters.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: ahbreg.h,v 1.18 2021/07/26 16:45:56 thorpej Exp $ */
/* $NetBSD: ahbreg.h,v 1.19 2022/02/23 21:54:40 andvar Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -73,7 +73,7 @@
#define HSCSIID 0x0F /* our SCSI ID */
#define RSTPWR 0x10 /* reset scsi bus on power up or reset */
/**** bit definitions for BUSDEF ****/
#define B0uS 0x00 /* give up bus immediatly */
#define B0uS 0x00 /* give up bus immediately */
#define B4uS 0x01 /* delay 4uSec. */
#define B8uS 0x02

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic7xxx_osm.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $ */
/* $NetBSD: aic7xxx_osm.c,v 1.42 2022/02/23 21:54:41 andvar Exp $ */
/*
* Bus independent FreeBSD shim for the aic7xxx based adaptec SCSI controllers
@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aic7xxx_osm.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: aic7xxx_osm.c,v 1.42 2022/02/23 21:54:41 andvar Exp $");
#include <dev/ic/aic7xxx_osm.h>
#include <dev/ic/aic7xxx_inline.h>
@ -1038,7 +1038,7 @@ bus_reset:
ahc_timeout, scb);
ahc_unpause(ahc);
} else {
/* Go "immediatly" to the bus reset */
/* Go "immediately" to the bus reset */
/* This shouldn't happen */
ahc_set_recoveryscb(ahc, scb);
ahc_print_path(ahc, scb);

View File

@ -1,4 +1,4 @@
/* $NetBSD: esiop.c,v 1.59 2021/08/07 16:19:12 thorpej Exp $ */
/* $NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 2002 Manuel Bouyer.
@ -28,7 +28,7 @@
/* SYM53c7/8xx PCI-SCSI I/O Processors driver */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.59 2021/08/07 16:19:12 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -1398,7 +1398,7 @@ esiop_handle_qtag_reject(struct esiop_cmd *esiop_cmd)
/*
* handle a bus reset: reset chip, unqueue all active commands, free all
* target struct and report lossage to upper layer.
* As the upper layer may requeue immediatly we have to first store
* As the upper layer may requeue immediately we have to first store
* all active commands in a temporary queue.
*/
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: siop.c,v 1.102 2021/08/07 16:19:12 thorpej Exp $ */
/* $NetBSD: siop.c,v 1.103 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 2000 Manuel Bouyer.
@ -28,7 +28,7 @@
/* SYM53c7/8xx PCI-SCSI I/O Processors driver */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.102 2021/08/07 16:19:12 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.103 2022/02/23 21:54:41 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -1160,7 +1160,7 @@ siop_handle_qtag_reject(struct siop_cmd *siop_cmd)
/*
* handle a bus reset: reset chip, unqueue all active commands, free all
* target struct and report lossage to upper layer.
* As the upper layer may requeue immediatly we have to first store
* As the upper layer may requeue immediately we have to first store
* all active commands in a temporary queue.
*/
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_skreg.h,v 1.30 2021/08/02 12:56:24 andvar Exp $ */
/* $NetBSD: if_skreg.h,v 1.31 2022/02/23 21:54:41 andvar Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -1930,7 +1930,7 @@ struct msk_status_desc {
#define YU_RXSTAT_MIIERR 0x00000020 /* MII error */
#define YU_RXSTAT_BADFC 0x00000040 /* bad flow-control packet */
#define YU_RXSTAT_GOODFC 0x00000080 /* good flow-control packet */
#define YU_RXSTAT_RXOK 0x00000100 /* receice OK (Good packet) */
#define YU_RXSTAT_RXOK 0x00000100 /* receive OK (Good packet) */
#define YU_RXSTAT_BROADCAST 0x00000200 /* broadcast packet */
#define YU_RXSTAT_MULTICAST 0x00000400 /* multicast packet */
#define YU_RXSTAT_RUNT 0x00000800 /* undersize packet */

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $ */
/* $NetBSD: if_tl.c,v 1.124 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.124 2022/02/23 21:54:41 andvar Exp $");
#undef TLDEBUG
#define TL_PRIV_STATS
@ -1135,7 +1135,7 @@ tl_intr(void *v)
bus_dmamap_sync(sc->tl_dmatag, sc->Tx_dmamap, 0,
sizeof(struct tl_Tx_list) * TL_NBUF,
BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
/* if this was an EOC, ACK immediatly */
/* if this was an EOC, ACK immediately */
if (ack)
sc->tl_if.if_flags &= ~IFF_OACTIVE;
if (int_type == TL_INTR_TxEOC) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $ */
/* $NetBSD: ss.c,v 1.91 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 1995 Kenneth Stailey. All rights reserved.
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.91 2022/02/23 21:54:41 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -414,7 +414,7 @@ ssstrategy(struct buf *bp)
if (bp->b_bcount > ss->sio.scan_window_size)
bp->b_bcount = ss->sio.scan_window_size;
/* If it's a null transfer, return immediatly */
/* If it's a null transfer, return immediately */
if (bp->b_bcount == 0)
goto done;

View File

@ -1,4 +1,4 @@
/* $NetBSD: st.c,v 1.242 2021/12/05 02:21:08 msaitoh Exp $ */
/* $NetBSD: st.c,v 1.243 2022/02/23 21:54:41 andvar Exp $ */
/*-
* Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.242 2021/12/05 02:21:08 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.243 2022/02/23 21:54:41 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_scsi.h"
@ -1686,7 +1686,7 @@ st_read(struct st_softc *st, char *bf, int size, int flags)
{
struct scsi_rw_tape cmd;
/* If it's a null transfer, return immediatly */
/* If it's a null transfer, return immediately */
if (size == 0)
return 0;
memset(&cmd, 0, sizeof(cmd));

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_le_tc.c,v 1.22 2017/06/22 16:46:53 flxd Exp $ */
/* $NetBSD: if_le_tc.c,v 1.23 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_le_tc.c,v 1.22 2017/06/22 16:46:53 flxd Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_le_tc.c,v 1.23 2022/02/23 21:54:41 andvar Exp $");
#include "opt_inet.h"
@ -106,7 +106,7 @@ le_tc_attach(device_t parent, device_t self, void *aux)
/*
* TC lance boards have onboard SRAM buffers. DMA
* between the onbard RAM and main memory is not possible,
* between the onboard RAM and main memory is not possible,
* so DMA setup is not required.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh Exp $ */
/* $NetBSD: puffs_vnops.c,v 1.225 2022/02/23 21:54:41 andvar Exp $ */
/*
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.225 2022/02/23 21:54:41 andvar Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@ -1342,12 +1342,12 @@ puffs_vnop_inactive(void *v)
mutex_enter(&pmp->pmp_sopmtx);
/*
* If thread has disapeared, just give up. The
* If thread has disappeared, just give up. The
* fs is being unmounted and the node will be
* be reclaimed anyway.
*
* Otherwise, we queue the request but do not
* immediatly signal the thread, as the node
* immediately signal the thread, as the node
* has not been expired yet.
*/
if (pmp->pmp_sopthrcount == 0) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_sig.c,v 1.401 2022/02/12 15:51:29 thorpej Exp $ */
/* $NetBSD: kern_sig.c,v 1.402 2022/02/23 21:54:41 andvar Exp $ */
/*-
* Copyright (c) 2006, 2007, 2008, 2019 The NetBSD Foundation, Inc.
@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.401 2022/02/12 15:51:29 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.402 2022/02/23 21:54:41 andvar Exp $");
#include "opt_execfmt.h"
#include "opt_ptrace.h"
@ -2434,7 +2434,7 @@ proc_stop(struct proc *p, int signo)
}
/*
* When stopping a process, we do not immediatly set sleeping LWPs stopped,
* When stopping a process, we do not immediately set sleeping LWPs stopped,
* but wait for them to come to a halt at the kernel-user boundary. This is
* to allow LWPs to release any locks that they may hold before stopping.
*

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_turnstile.c,v 1.40 2020/05/23 20:45:10 ad Exp $ */
/* $NetBSD: kern_turnstile.c,v 1.41 2022/02/23 21:54:41 andvar Exp $ */
/*-
* Copyright (c) 2002, 2006, 2007, 2009, 2019, 2020
@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.40 2020/05/23 20:45:10 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.41 2022/02/23 21:54:41 andvar Exp $");
#include <sys/param.h>
#include <sys/lockdebug.h>
@ -243,7 +243,7 @@ turnstile_lendpri(lwp_t *cur)
if (cur == owner) {
/*
* We own the lock: stop here, sleepq_block()
* should wake up immediatly.
* should wake up immediately.
*/
break;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: raw_ip6.c,v 1.176 2021/09/21 15:08:44 christos Exp $ */
/* $NetBSD: raw_ip6.c,v 1.177 2022/02/23 21:54:41 andvar Exp $ */
/* $KAME: raw_ip6.c,v 1.82 2001/07/23 18:57:56 jinmei Exp $ */
/*
@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.176 2021/09/21 15:08:44 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.177 2022/02/23 21:54:41 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_ipsec.h"
@ -783,7 +783,7 @@ rip6_shutdown(struct socket *so)
KASSERT(solocked(so));
/*
* Mark the connection as being incapable of futther input.
* Mark the connection as being incapable of futher input.
*/
socantsendmore(so);
return 0;