mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
A style tweak based on feedback received
Replace a bare ";" with "continue;" for the body of a for loop. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
7b21c00e1c
commit
bf0ba5e704
@ -1046,7 +1046,7 @@ int ssl_choose_server_version(SSL *s, CLIENTHELLO_MSG *hello)
|
||||
for (vent = table;
|
||||
vent->version != 0 && vent->version != (int)candidate_vers;
|
||||
++vent)
|
||||
;
|
||||
continue;
|
||||
if (vent->version != 0 && vent->smeth != NULL) {
|
||||
const SSL_METHOD *method;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user