diff options
author | Matt Caswell <matt@openssl.org> | 2015-10-26 15:08:22 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-10-30 09:39:47 +0100 |
commit | bb3e20cf8c5e733c16fe68ce41f67eea5a2a520e (patch) | |
tree | 0773c99f5908bb5c5003dd0c86136969541348c9 /ssl | |
parent | Remove superfluous check (diff) | |
download | openssl-bb3e20cf8c5e733c16fe68ce41f67eea5a2a520e.tar.xz openssl-bb3e20cf8c5e733c16fe68ce41f67eea5a2a520e.zip |
Remove the inline keyword
Some functions were marked as inline in statem_srvr.c where they probably
didn't need to be, so remove it.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/statem/statem_srvr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index b68366cb33..a4bc0e380d 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -310,7 +310,7 @@ int ossl_statem_server_read_transition(SSL *s, int mt) * 1: Yes * 0: No */ -static inline int send_server_key_exchange(SSL *s) +static int send_server_key_exchange(SSL *s) { unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey; @@ -362,7 +362,7 @@ static inline int send_server_key_exchange(SSL *s) * 1: Yes * 0: No */ -static inline int send_certificate_request(SSL *s) +static int send_certificate_request(SSL *s) { if ( /* don't request cert unless asked for it: */ |