diff options
author | Matt Caswell <matt@openssl.org> | 2016-09-29 11:06:11 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-09-29 11:06:46 +0200 |
commit | 25849a8f8bb64956f35a8a2a160ae0de1d2990c6 (patch) | |
tree | 1190fcfc4093cf82e1066b7f865dbe384b9348c7 /ssl | |
parent | Fix a bug in the construction of the ClienHello SRTP extension (diff) | |
download | openssl-25849a8f8bb64956f35a8a2a160ae0de1d2990c6.tar.xz openssl-25849a8f8bb64956f35a8a2a160ae0de1d2990c6.zip |
Address style feedback comments
Merge declarations of same type together.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/statem/statem_srvr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index 190d198e3b..bf50e79e83 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -1499,9 +1499,7 @@ WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst) int tls_construct_server_hello(SSL *s) { - int sl; - int al = SSL_AD_INTERNAL_ERROR; - int compm; + int sl, compm, al = SSL_AD_INTERNAL_ERROR; size_t len; WPACKET pkt; |