summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-05-26 14:53:44 +0200
committerPierre Rossi <pierre.rossi@theqtcompany.com>2015-05-26 13:02:33 +0000
commit41a1a031cd69e187a9608359ffe56652dcaaa6c5 (patch)
treee7dbd6fd87e1b410cc93eecc1d638adab5430094
parent8f3cc602a63d46744a6b8bb89cc04d3d473791de (diff)
FIXUP Increase minimum DH size to 1024 bitsv5.5.0
Remove erroneous extra brace. Change-Id: I397cd3ba5368d27c19ea928717b6c186fb6a1cca Reviewed-by: Pierre Rossi <pierre.rossi@theqtcompany.com>
-rw-r--r--chromium/third_party/boringssl/src/ssl/s3_clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/boringssl/src/ssl/s3_clnt.c b/chromium/third_party/boringssl/src/ssl/s3_clnt.c
index a45e6900836..a0761a7c0c8 100644
--- a/chromium/third_party/boringssl/src/ssl/s3_clnt.c
+++ b/chromium/third_party/boringssl/src/ssl/s3_clnt.c
@@ -1326,7 +1326,7 @@ int ssl3_get_server_key_exchange(SSL *s)
goto err;
}
- if (DH_num_bits(dh) < 1024) {
+ if (DH_num_bits(dh) < 1024)
{
OPENSSL_PUT_ERROR(SSL, ssl3_get_server_key_exchange, SSL_R_BAD_DH_P_LENGTH);
goto err;