diff options
author | Matt Caswell <matt@openssl.org> | 2015-05-28 17:36:51 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-05-28 17:55:15 +0200 |
commit | d9f1c639d5162617ab0aeec23865771dc4fbcbcd (patch) | |
tree | 571e941976f42255a6457469f8198b5320eece07 /util | |
parent | Change the new functions to use size_t (diff) | |
download | openssl-d9f1c639d5162617ab0aeec23865771dc4fbcbcd.tar.xz openssl-d9f1c639d5162617ab0aeec23865771dc4fbcbcd.zip |
Change return type of the new accessors
The new accessors SSL_get_client_random, SSL_get_server_random and
SSL_SESSION_get_master_key should return a size_t to match the type of the
|outlen| parameter.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-x | util/ssleay.num | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/ssleay.num b/util/ssleay.num index 1b4755cb12..1441be770b 100755 --- a/util/ssleay.num +++ b/util/ssleay.num @@ -399,3 +399,7 @@ SSL_use_certificate_chain_file 433 EXIST::FUNCTION:STDIO TLS_server_method 434 EXIST::FUNCTION: TLS_method 435 EXIST::FUNCTION: TLS_client_method 436 EXIST::FUNCTION: +SSL_get_server_random 437 EXIST::FUNCTION: +SSL_get_client_ciphers 438 EXIST::FUNCTION: +SSL_get_client_random 439 EXIST::FUNCTION: +SSL_SESSION_get_master_key 440 EXIST::FUNCTION: |