1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Revert "Use TLS 1.2 with Qt 5 when disabling SSLv3"

This reverts commit 0ccc759e1f.
This commit is contained in:
David Rosca 2015-01-12 21:11:03 +01:00
parent 509a79d987
commit 26ca447d91

View File

@ -189,7 +189,7 @@ void NetworkManager::disableSSLv3(bool disable)
tlsProtocol = QSsl::TlsV1; tlsProtocol = QSsl::TlsV1;
defaultProtocol = QSsl::TlsV1SslV3; defaultProtocol = QSsl::TlsV1SslV3;
#else #else
tlsProtocol = QSsl::TlsV1_2; tlsProtocol = QSsl::TlsV1_0;
defaultProtocol = QSsl::TlsV1SslV3; defaultProtocol = QSsl::TlsV1SslV3;
#endif #endif