Minor wording fixes related to no-atexit
authorTomas Mraz <tomas@openssl.org>
Tue, 20 Feb 2024 17:42:24 +0000 (18:42 +0100)
committerTomas Mraz <tomas@openssl.org>
Thu, 22 Feb 2024 09:38:55 +0000 (10:38 +0100)
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/23642)

(cherry picked from commit 66e6f72c3e4221580a7f456ddeaa5027f0bbb8b7)

INSTALL.md
test/recipes/90-test_shlibload.t

index d0ca3f91f324fa85a9f72a29e64700d0c9750bbd..95842c4641e647eec54851c74113e9e20c0c24ff 100644 (file)
@@ -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
 
index af6bae20af341483eefd2bf9c1d4981e7f9c601c..ccd7fa43e3d541c0573ce33a19a9802fa8241ba3 100644 (file)
@@ -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;