aboutsummaryrefslogtreecommitdiff
path: root/www/firefox-esr/files
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-01-19 12:00:20 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-01-19 12:00:20 +0000
commita319f1f8786470239ab81bd2f7fe6c063a331820 (patch)
tree4a6981bd49c4f47a4661221d54d883afcfda385e /www/firefox-esr/files
parent20f3d7051c6ea5cdbfc4b3fe749ac88965d769d0 (diff)
www/firefox-esr: update to 45.7.0 (rc1)
Changes: https://www.mozilla.org/firefox/45.7.0/releasenotes/ Changes: https://hg.mozilla.org/releases/mozilla-esr45/shortlog Security: e60169c4-aa86-46b0-8ae2-0d81f683df09 MFH: 2017Q1
Notes
Notes: svn path=/head/; revision=431859
Diffstat (limited to 'www/firefox-esr/files')
-rw-r--r--www/firefox-esr/files/patch-bug129003729
1 files changed, 0 insertions, 29 deletions
diff --git a/www/firefox-esr/files/patch-bug1290037 b/www/firefox-esr/files/patch-bug1290037
deleted file mode 100644
index 033137a94f50..000000000000
--- a/www/firefox-esr/files/patch-bug1290037
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 7943c27406fb
-Author: Franziskus Kiefer <franziskuskiefer@gmail.com>
-Date: Thu Jul 28 16:48:00 2016 +0200
-
- Bug 1290037 - Update keybits in H2, r=mt
-
- MozReview-Commit-ID: 35oWoDMqe1Y
-
- --HG--
- extra : rebase_source : 020fbd93c190131eb04eed2d583787d6e5954a5a
----
- netwerk/protocol/http/Http2Session.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git netwerk/protocol/http/Http2Session.cpp netwerk/protocol/http/Http2Session.cpp
-index dbcc1115cbd3..f3cd57304f73 100644
---- netwerk/protocol/http/Http2Session.cpp
-+++ netwerk/protocol/http/Http2Session.cpp
-@@ -3549,8 +3549,8 @@ Http2Session::ConfirmTLSProfile()
- LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n",
- this, keybits));
- RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
-- } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security level" of 128
-- LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n",
-+ } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1.
-+ LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n",
- this, keybits));
- RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
- }