summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-12 12:49:40 +0200
committerMatt Caswell <matt@openssl.org>2016-04-13 09:59:03 +0200
commit974eeb93e3549d378d2c20276a51e2de21d50622 (patch)
tree4075b3c9e064038f361089ef89495ae41ff9fa12
parentMisc fix ups to deprecate explicit de-init documentation (diff)
downloadopenssl-974eeb93e3549d378d2c20276a51e2de21d50622.tar.xz
openssl-974eeb93e3549d378d2c20276a51e2de21d50622.zip
Tweak to documentation
Tweak to documentation following feedback Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--doc/crypto/RAND_set_rand_method.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/RAND_set_rand_method.pod b/doc/crypto/RAND_set_rand_method.pod
index 01babe6036..6a421a2084 100644
--- a/doc/crypto/RAND_set_rand_method.pod
+++ b/doc/crypto/RAND_set_rand_method.pod
@@ -45,8 +45,8 @@ API is being used, so this function is no longer recommended.
int (*status)(void);
} RAND_METHOD;
-The components point to the implementation of RAND_seed(),
-RAND_bytes(), internal RAND cleanup, RAND_add(), RAND_pseudo_rand()
+The components point to method implementations used by (or called by), in order,
+RAND_seed(), RAND_bytes(), internal RAND cleanup, RAND_add(), RAND_pseudo_rand()
and RAND_status().
Each component may be NULL if the function is not implemented.