From 25849a8f8bb64956f35a8a2a160ae0de1d2990c6 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 29 Sep 2016 10:06:11 +0100 Subject: [PATCH] Address style feedback comments Merge declarations of same type together. Reviewed-by: Rich Salz --- ssl/statem/statem_srvr.c | 4 +--- 1 file changed, 1 insertion(+), 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; -- 2.25.1