Module Name: src Committed By: andvar Date: Sat Aug 5 09:25:39 UTC 2023
Modified Files: src/sys/kern: uipc_socket.c Log Message: s/acccept/accept/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.302 -r1.303 src/sys/kern/uipc_socket.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/uipc_socket.c diff -u src/sys/kern/uipc_socket.c:1.302 src/sys/kern/uipc_socket.c:1.303 --- src/sys/kern/uipc_socket.c:1.302 Sat Apr 9 23:52:22 2022 +++ src/sys/kern/uipc_socket.c Sat Aug 5 09:25:39 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: uipc_socket.c,v 1.302 2022/04/09 23:52:22 riastradh Exp $ */ +/* $NetBSD: uipc_socket.c,v 1.303 2023/08/05 09:25:39 andvar Exp $ */ /* * Copyright (c) 2002, 2007, 2008, 2009 The NetBSD Foundation, Inc. @@ -71,7 +71,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.302 2022/04/09 23:52:22 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.303 2023/08/05 09:25:39 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_compat_netbsd.h" @@ -702,7 +702,7 @@ sofree(struct socket *so) KASSERT(!cv_has_waiters(&so->so_snd.sb_cv)); sorflush(so); refs = so->so_aborting; /* XXX */ - /* Remove acccept filter if one is present. */ + /* Remove accept filter if one is present. */ if (so->so_accf != NULL) (void)accept_filt_clear(so); sounlock(so);