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:
7b21c00
)
A style tweak based on feedback received
author
Matt Caswell
<matt@openssl.org>
Tue, 1 Nov 2016 00:37:23 +0000
(
00:37
+0000)
committer
Matt Caswell
<matt@openssl.org>
Wed, 9 Nov 2016 16:03:08 +0000
(16:03 +0000)
Replace a bare ";" with "continue;" for the body of a for loop.
Reviewed-by: Rich Salz <rsalz@openssl.org>
ssl/statem/statem_lib.c
patch
|
blob
|
history
diff --git
a/ssl/statem/statem_lib.c
b/ssl/statem/statem_lib.c
index be604dd1232b2aa8d870271dbacc5f30f7341525..117462a81eea27722bf12e257ae6fbe78268de52 100644
(file)
--- 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;