Commit bf0ba5e7 authored by Matt Caswell's avatar Matt Caswell
Browse files

A style tweak based on feedback received



Replace a bare ";" with "continue;" for the body of a for loop.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 7b21c00e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;