зеркало из https://github.com/mozilla/gecko-dev.git
Bug 368130 Bogus "SSL is disabled" error when SSL3 is disabled, r=kaie
This commit is contained in:
Родитель
670e32bf1a
Коммит
3b7a8f015b
|
@ -1479,7 +1479,15 @@ nsSSLIOLayerHelpers::rememberPossibleTLSProblemSite(PRFileDesc* ssl_layer_fd, ns
|
|||
PRBool currentlyUsesTLS = PR_FALSE;
|
||||
|
||||
SSL_OptionGet(ssl_layer_fd, SSL_ENABLE_TLS, ¤tlyUsesTLS);
|
||||
if (currentlyUsesTLS) {
|
||||
if (!currentlyUsesTLS)
|
||||
return PR_FALSE;
|
||||
|
||||
PRBool enableSSL3 = PR_FALSE;
|
||||
SSL_OptionGet(ssl_layer_fd, SSL_ENABLE_SSL3, &enableSSL3);
|
||||
PRBool enableSSL2 = PR_FALSE;
|
||||
SSL_OptionGet(ssl_layer_fd, SSL_ENABLE_SSL2, &enableSSL2);
|
||||
if (enableSSL3 || enableSSL2)
|
||||
{
|
||||
// Add this site to the list of TLS intolerant sites.
|
||||
PRInt32 port;
|
||||
nsXPIDLCString host;
|
||||
|
|
Загрузка…
Ссылка в новой задаче