diff options
author | Benjamin Kaduk <bkaduk@akamai.com> | 2017-03-14 17:14:30 -0500 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-03-14 22:45:44 +0000 |
commit | e0926ef49df09a85117d7442db83f321aeb5b982 (patch) | |
tree | 842664330904f5d65016831903890f2851e2f5ef | |
parent | a74db02a2e182a16c76a12da1ac8ae8a215746b0 (diff) | |
download | openssl-new-e0926ef49df09a85117d7442db83f321aeb5b982.tar.gz |
De-obfuscate
No need to break out of the loop and repeat the loop termination
condition when we can just return.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2949)
-rw-r--r-- | ssl/statem/extensions_clnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/statem/extensions_clnt.c b/ssl/statem/extensions_clnt.c index 8860462a1f..98159b54cc 100644 --- a/ssl/statem/extensions_clnt.c +++ b/ssl/statem/extensions_clnt.c @@ -102,10 +102,10 @@ static int use_ecc(SSL *s) if ((alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) || (alg_a & SSL_aECDSA) || c->min_tls >= TLS1_3_VERSION) - break; + return 1; } - return i < end; + return 0; } int tls_construct_ctos_ec_pt_formats(SSL *s, WPACKET *pkt, unsigned int context, |