From: Tomas Mraz Date: Tue, 20 Feb 2024 17:42:24 +0000 (+0100) Subject: Minor wording fixes related to no-atexit X-Git-Tag: openssl-3.1.6~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=801eed6e29623584914824dcfec15ec8e3a86dd3;p=thirdparty%2Fopenssl.git Minor wording fixes related to no-atexit Reviewed-by: Tom Cosgrove Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/23642) (cherry picked from commit 66e6f72c3e4221580a7f456ddeaa5027f0bbb8b7) --- diff --git a/INSTALL.md b/INSTALL.md index d0ca3f91f32..95842c4641e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -552,7 +552,7 @@ Do not build support for async operations. Do not use `atexit()` in libcrypto builds. `atexit()` has varied semantics between platforms and can cause SIGSEGV in some -circumstances. This options disables the atexit registration of OPENSSL_cleanup. +circumstances. This option disables the atexit registration of OPENSSL_cleanup. ### no-autoalginit diff --git a/test/recipes/90-test_shlibload.t b/test/recipes/90-test_shlibload.t index af6bae20af3..ccd7fa43e3d 100644 --- a/test/recipes/90-test_shlibload.t +++ b/test/recipes/90-test_shlibload.t @@ -23,7 +23,7 @@ plan skip_all => "Test is disabled on AIX" if config('target') =~ m|^aix|; plan skip_all => "Test is disabled on NonStop" if config('target') =~ m|^nonstop|; plan skip_all => "Test only supported in a dso build" if disabled("dso"); plan skip_all => "Test is disabled in an address sanitizer build" unless disabled("asan"); -plan skip_all => "Test is disabled if no-atexit is specified" if disabled("atexit"); +plan skip_all => "Test is disabled in no-atexit build" if disabled("atexit"); plan tests => 10;