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:
Matt Caswell 2016-11-01 00:37:23 +00:00
parent 7b21c00e1c
commit bf0ba5e704

View File

@ -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;