From bf0ba5e7040d59b0c8e2c5cf6922fdd0ccc11d1a Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 1 Nov 2016 00:37:23 +0000 Subject: [PATCH] A style tweak based on feedback received Replace a bare ";" with "continue;" for the body of a for loop. Reviewed-by: Rich Salz --- ssl/statem/statem_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/statem/statem_lib.c b/ssl/statem/statem_lib.c index be604dd123..117462a81e 100644 --- a/ssl/statem/statem_lib.c +++ b/ssl/statem/statem_lib.c @@ -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; -- 2.25.1