diff options
author | Rich Salz <rsalz@openssl.org> | 2017-09-02 22:12:12 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-09-02 23:01:29 +0200 |
commit | 02eca5c640ced75805ff576c4845b33b77e4753a (patch) | |
tree | de8270c57e1aa8bee974add5646ae448fd841ab8 | |
parent | config: get "stty technique" working again on MacOS X. (diff) | |
download | openssl-02eca5c640ced75805ff576c4845b33b77e4753a.tar.xz openssl-02eca5c640ced75805ff576c4845b33b77e4753a.zip |
Fix doc-nits from previous commit
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4325)
-rw-r--r-- | doc/man3/DH_generate_parameters.pod | 2 | ||||
-rw-r--r-- | doc/man3/DSA_generate_parameters.pod | 2 | ||||
-rw-r--r-- | doc/man3/RAND_cleanup.pod | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/doc/man3/DH_generate_parameters.pod b/doc/man3/DH_generate_parameters.pod index 4143df0f17..2e8c3b7172 100644 --- a/doc/man3/DH_generate_parameters.pod +++ b/doc/man3/DH_generate_parameters.pod @@ -122,7 +122,7 @@ L<DH_free(3)> =head1 HISTORY -DH_generate_parameters() was deprecated in OpenSSL version 0.9.8; use +DH_generate_parameters() was deprecated in OpenSSL 0.9.8; use DH_generate_parameters_ex() instead. =head1 COPYRIGHT diff --git a/doc/man3/DSA_generate_parameters.pod b/doc/man3/DSA_generate_parameters.pod index e011539f96..b01af2cc59 100644 --- a/doc/man3/DSA_generate_parameters.pod +++ b/doc/man3/DSA_generate_parameters.pod @@ -111,7 +111,7 @@ L<DSA_free(3)>, L<BN_generate_prime(3)> =head1 HISTORY -DSA_generate_parameters() was deprecated in OpenSSL version 0.9.8; use +DSA_generate_parameters() was deprecated in OpenSSL 0.9.8; use DSA_generate_parameters_ex() instead. =head1 COPYRIGHT diff --git a/doc/man3/RAND_cleanup.pod b/doc/man3/RAND_cleanup.pod index a1f171538c..c5f19256bb 100644 --- a/doc/man3/RAND_cleanup.pod +++ b/doc/man3/RAND_cleanup.pod @@ -12,6 +12,8 @@ RAND_cleanup - erase the PRNG state void RAND_cleanup(void) #endif +=head1 DESCRIPTION + Prior to OpenSSL 1.1.0, RAND_cleanup() released all resources used by the PRNG. As of version 1.1.0, it does nothing and should not be called, since no explicit initialisation or de-initialisation is necessary. See |