diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version index 3cd574d8d907..0daa2908360f 100644 --- a/lib/libc/shlib_version +++ b/lib/libc/shlib_version @@ -1,4 +1,4 @@ -# $NetBSD: shlib_version,v 1.295 2023/08/01 17:51:24 christos Exp $ +# $NetBSD: shlib_version,v 1.296 2024/02/02 21:52:22 andvar Exp $ # Remember to update distrib/sets/lists/base/shl.* when changing # # things we wish to do on next major version bump: @@ -8,7 +8,7 @@ # - libc/net: resolver update to BIND8/9? # - md2, md4, md5, rmd160 & sha1 functions should take the same arguments AFAP # - Crypto hashes have name overlap with libcrypto, rename them -# - obsolete crypto hashes shold be booted out of libc +# - obsolete crypto hashes should be booted out of libc # - libc/gen/setproctitle.c: remove __ps_strings hack # - libc/gen/assert.c: __{diag,}assert13() -> __{diag,}assert() # - lib/libc/net/iso_addr.c: remove diff --git a/tests/rump/kernspace/threadpool.c b/tests/rump/kernspace/threadpool.c index d84eadc88ceb..2d81620db787 100644 --- a/tests/rump/kernspace/threadpool.c +++ b/tests/rump/kernspace/threadpool.c @@ -1,4 +1,4 @@ -/* $NetBSD: threadpool.c,v 1.5 2019/01/04 05:35:24 thorpej Exp $ */ +/* $NetBSD: threadpool.c,v 1.6 2024/02/02 21:52:23 andvar Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -32,7 +32,7 @@ #include #if !defined(lint) -__RCSID("$NetBSD: threadpool.c,v 1.5 2019/01/04 05:35:24 thorpej Exp $"); +__RCSID("$NetBSD: threadpool.c,v 1.6 2024/02/02 21:52:23 andvar Exp $"); #endif /* !lint */ #include @@ -223,7 +223,7 @@ rumptest_threadpool_job_cancel(void) cv_wait(&data.cond, &data.mutex); KASSERT(data.count == 1); - /* Job is already running (and is not finished); this shold fail. */ + /* Job is already running (and is not finished); this should fail. */ rv = threadpool_cancel_job_async(pool, &data.job); KASSERT(rv == false);