summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-06-30 13:55:08 -0400
committerRich Salz <rsalz@openssl.org>2017-06-30 14:47:02 -0400
commitb5319bdbd095ff59d084af5ce16e5f715963557d (patch)
treed56a440acbd17a07d1094d8fe5b6da5428f850a0 /doc
parentdcf6e50f48e6bab92dcd2dacb27fc17c0de34199 (diff)
Fix atfork flag. Avoid double-negatives :)
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/3815)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/OPENSSL_fork_prepare.pod2
-rw-r--r--doc/man3/OPENSSL_init_crypto.pod4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/man3/OPENSSL_fork_prepare.pod b/doc/man3/OPENSSL_fork_prepare.pod
index 4d05096c8d..99ec1a415b 100644
--- a/doc/man3/OPENSSL_fork_prepare.pod
+++ b/doc/man3/OPENSSL_fork_prepare.pod
@@ -30,7 +30,7 @@ such as Linux that have both functions will normally not need to call these
functions as the OpenSSL library will do so automatically.
L<OPENSSL_init_crypto(3)> will register these funtions with the appropriate
-hander, unless the B<OPENSSL_INIT_NO_ATFORK> flag is used. For those
+hander, when the B<OPENSSL_INIT_ATFORK> flag is used. For other
applications, these functions can be called directly. They should be used
according to the calling sequence described by the pthreads_atfork(3)
documentation, which is summarized here. OPENSSL_fork_prepare() should
diff --git a/doc/man3/OPENSSL_init_crypto.pod b/doc/man3/OPENSSL_init_crypto.pod
index 1ee7705b2b..ce7497e1b0 100644
--- a/doc/man3/OPENSSL_init_crypto.pod
+++ b/doc/man3/OPENSSL_init_crypto.pod
@@ -150,9 +150,9 @@ With this option the library will automatically load and initialise all the
built in engines listed above with the exception of the openssl and dasync
engines. This not a default option.
-=item OPENSSL_INIT_NO_ATFORK
+=item OPENSSL_INIT_ATFORK
-With this option the library will not register its fork handlers.
+With this option the library will register its fork handlers.
See OPENSSL_fork_prepare(3) for details.
=back