mirror of
git://slackware.nl/current.git
synced 2025-01-10 05:25:51 +01:00
cdea680437
a/hostname-3.23-x86_64-1.txz: Upgraded. a/kernel-firmware-20191108_f1100dd-noarch-1.txz: Upgraded. ap/mariadb-10.4.10-x86_64-1.txz: Upgraded. kde/kdelibs-4.14.38-x86_64-5.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. kde/kdepim-4.14.10-x86_64-5.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. kde/kdepimlibs-4.14.10-x86_64-9.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. l/adwaita-icon-theme-3.34.3-noarch-1.txz: Upgraded. testing/packages/rust-1.39.0-x86_64-1.txz: Upgraded.
11 lines
381 B
Diff
11 lines
381 B
Diff
--- a/kio/kio/tcpslavebase.cpp
|
|
+++ b/kio/kio/tcpslavebase.cpp
|
|
@@ -499,7 +499,7 @@
|
|
{
|
|
if (d->usingSSL)
|
|
return false;
|
|
- return d->startTLSInternal(KTcpSocket::TlsV1) & ResultOk;
|
|
+ return d->startTLSInternal(KTcpSocket::SecureProtocols) & ResultOk;
|
|
}
|
|
|
|
TCPSlaveBase::SslResult TCPSlaveBase::TcpSlaveBasePrivate::startTLSInternal (KTcpSocket::SslVersion version,
|