Module Name: src Committed By: khorben Date: Tue Nov 26 23:10:15 UTC 2024
Modified Files: src/sys/kern: sys_select.c Log Message: Typo in a comment To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/sys/kern/sys_select.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/sys_select.c diff -u src/sys/kern/sys_select.c:1.67 src/sys/kern/sys_select.c:1.68 --- src/sys/kern/sys_select.c:1.67 Fri Oct 18 13:12:34 2024 +++ src/sys/kern/sys_select.c Tue Nov 26 23:10:15 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: sys_select.c,v 1.67 2024/10/18 13:12:34 kre Exp $ */ +/* $NetBSD: sys_select.c,v 1.68 2024/11/26 23:10:15 khorben Exp $ */ /*- * Copyright (c) 2007, 2008, 2009, 2010, 2019, 2020, 2023 @@ -85,7 +85,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sys_select.c,v 1.67 2024/10/18 13:12:34 kre Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sys_select.c,v 1.68 2024/11/26 23:10:15 khorben Exp $"); #include <sys/param.h> @@ -395,7 +395,7 @@ selcommon(register_t *retval, int nd, fd * Don't allow absurdly large numbers of fds to be selected. * (used to silently truncate, naughty naughty, no more ...) * - * The additional FD_SETSISE allows for cases where the limit + * The additional FD_SETSIZE allows for cases where the limit * is not a round binary number, but the fd_set wants to * include all the possible fds, as fd_sets are always * multiples of 32 bits (__NFDBITS extra would be enough).