projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7facdbd
)
Address style feedback comments
author
Matt Caswell
<matt@openssl.org>
Thu, 29 Sep 2016 09:06:11 +0000
(10:06 +0100)
committer
Matt Caswell
<matt@openssl.org>
Thu, 29 Sep 2016 09:06:46 +0000
(10:06 +0100)
Merge declarations of same type together.
Reviewed-by: Rich Salz <rsalz@openssl.org>
ssl/statem/statem_srvr.c
patch
|
blob
|
history
diff --git
a/ssl/statem/statem_srvr.c
b/ssl/statem/statem_srvr.c
index 190d198e3b32735896c544fe5a1a0c54a51d0b54..bf50e79e83a85493bb4fe6d55d51773f4be72ff8 100644
(file)
--- 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;