Accepting request 434030 from home:Vogtinator:branches:KDE:Frameworks5:LTS
Note to myself: Don't patch late at night... OBS-URL: https://build.opensuse.org/request/show/434030 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5:LTS/kio?expand=0&rev=4
This commit is contained in:
parent
5345e8c3fe
commit
7ec02dd1c0
29
0001-Fix-kio-using-only-tls1.0.patch
Normal file
29
0001-Fix-kio-using-only-tls1.0.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From 428b3b7b07a76a46e235cf9f491d1c1aa0bebf1e Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= <andrius@stikonas.eu>
|
||||||
|
Date: Mon, 26 Sep 2016 18:15:02 +0100
|
||||||
|
Subject: [PATCH] Fix kio using only tls1.0.
|
||||||
|
|
||||||
|
Now kio should use QSsl::SslProtocol::SecureProtocols which will deprecate
|
||||||
|
unsafe TLS versions when they are no longer safe.
|
||||||
|
|
||||||
|
REVIEW: 129031
|
||||||
|
---
|
||||||
|
src/core/tcpslavebase.cpp | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/core/tcpslavebase.cpp b/src/core/tcpslavebase.cpp
|
||||||
|
index b9be69d..27fe3d0 100644
|
||||||
|
--- a/src/core/tcpslavebase.cpp
|
||||||
|
+++ b/src/core/tcpslavebase.cpp
|
||||||
|
@@ -492,7 +492,7 @@ bool TCPSlaveBase::startSsl()
|
||||||
|
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,
|
||||||
|
--
|
||||||
|
2.10.0
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 9 09:08:59 UTC 2016 - fabian@ritter-vogt.de
|
||||||
|
|
||||||
|
- Add 0001-Fix-kio-using-only-tls1.0.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 5 15:58:21 UTC 2016 - hrvoje.senjan@gmail.com
|
Wed Oct 5 15:58:21 UTC 2016 - hrvoje.senjan@gmail.com
|
||||||
|
|
||||||
|
3
kio.spec
3
kio.spec
@ -77,6 +77,8 @@ Source1: baselibs.conf
|
|||||||
Patch0: kio_help-fallback-to-kde4-docs.patch
|
Patch0: kio_help-fallback-to-kde4-docs.patch
|
||||||
# PATCH-FIX-UPSTREAM Fix-launching-terminal-desktop-files-with-konsole.patch
|
# PATCH-FIX-UPSTREAM Fix-launching-terminal-desktop-files-with-konsole.patch
|
||||||
Patch1: Fix-launching-terminal-desktop-files-with-konsole.patch
|
Patch1: Fix-launching-terminal-desktop-files-with-konsole.patch
|
||||||
|
# PATCH-FIX-UPSTREAM 0001-Fix-kio-using-only-tls1.0.patch
|
||||||
|
Patch2: 0001-Fix-kio-using-only-tls1.0.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -124,6 +126,7 @@ Development files.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kf5 -d build
|
%cmake_kf5 -d build
|
||||||
|
Loading…
Reference in New Issue
Block a user