summaryrefslogtreecommitdiffstats
path: root/xbmc-13.1-curl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc-13.1-curl.patch')
-rw-r--r--xbmc-13.1-curl.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/xbmc-13.1-curl.patch b/xbmc-13.1-curl.patch
deleted file mode 100644
index f4a586f..0000000
--- a/xbmc-13.1-curl.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From b47117d9d0e1be09a298079919cc335baf2f37f0 Mon Sep 17 00:00:00 2001
-From: Pierre Ossman <pierre@ossman.eu>
-Date: Sun, 25 May 2014 17:10:03 +0200
-Subject: [PATCH] curl: don't mess with the default cipher list as we can't
- know the format
-
----
- xbmc/filesystem/CurlFile.cpp | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/xbmc/filesystem/CurlFile.cpp b/xbmc/filesystem/CurlFile.cpp
-index 30de6f9..0a5ea14 100644
---- a/xbmc/filesystem/CurlFile.cpp
-+++ b/xbmc/filesystem/CurlFile.cpp
-@@ -394,7 +394,7 @@ CCurlFile::CCurlFile()
- m_username = "";
- m_password = "";
- m_httpauth = "";
-- m_cipherlist = "DEFAULT";
-+ m_cipherlist = "";
- m_proxytype = PROXY_HTTP;
- m_state = new CReadState();
- m_oldState = NULL;
-@@ -608,7 +608,8 @@ void CCurlFile::SetCommonOptions(CReadState* state)
- g_curlInterface.easy_setopt(h, CURLOPT_IGNORE_CONTENT_LENGTH, 1);
-
- // Setup allowed TLS/SSL ciphers. New versions of cURL may deprecate things that are still in use.
-- g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, m_cipherlist.c_str());
-+ if (!m_cipherlist.empty())
-+ g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, m_cipherlist.c_str());
- }
-
- void CCurlFile::SetRequestHeaders(CReadState* state)
---
-1.9.3
-