From cb70b659d665a9466b0b3b46dff153b6126c2c1c Mon Sep 17 00:00:00 2001 From: Dorel Luca Date: Wed, 27 May 2020 17:52:28 +0300 Subject: [PATCH] Backed out changeset 0440fa5863b2 (bug 1634947) for Devtools failures in browser_webconsole_certificate_messages.js . CLOSED TREE --- dom/locales/en-US/chrome/security/security.properties | 2 +- netwerk/protocol/http/nsHttpChannel.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dom/locales/en-US/chrome/security/security.properties b/dom/locales/en-US/chrome/security/security.properties index 549006f1794c..9c4781394030 100644 --- a/dom/locales/en-US/chrome/security/security.properties +++ b/dom/locales/en-US/chrome/security/security.properties @@ -67,7 +67,7 @@ NoValidMetadata=The integrity attribute does not contain any valid metadata. # LOCALIZATION NOTE: Do not translate "RC4". WeakCipherSuiteWarning=This site uses the cipher RC4 for encryption, which is deprecated and insecure. -DeprecatedTLSVersion2=This site uses a deprecated version of TLS. Please upgrade to TLS 1.2 or 1.3. +DeprecatedTLSVersion=This site uses a deprecated version of TLS that will be disabled in March 2020. Please upgrade to TLS 1.2 or 1.3. #XCTO: nosniff # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options: nosniff". diff --git a/netwerk/protocol/http/nsHttpChannel.cpp b/netwerk/protocol/http/nsHttpChannel.cpp index 886da38bb813..075a4d649008 100644 --- a/netwerk/protocol/http/nsHttpChannel.cpp +++ b/netwerk/protocol/http/nsHttpChannel.cpp @@ -2381,7 +2381,7 @@ void nsHttpChannel::ProcessSSLInformation() { if (NS_SUCCEEDED(rv) && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_2 && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_3) { - nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion2"); + nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion"); nsString consoleErrorCategory = NS_LITERAL_STRING("TLS"); Unused << AddSecurityMessage(consoleErrorTag, consoleErrorCategory); }