summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-09-29 10:06:11 +0100
committerMatt Caswell <matt@openssl.org>2016-09-29 10:06:46 +0100
commit25849a8f8bb64956f35a8a2a160ae0de1d2990c6 (patch)
tree1190fcfc4093cf82e1066b7f865dbe384b9348c7 /ssl
parent7facdbd66f19f4a87cf2a5a335568c879772d92f (diff)
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.c4
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;