[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - desktop/source

Markus Mohrhard markus.mohrhard at googlemail.com
Wed Aug 2 08:20:36 UTC 2017


 desktop/source/minidump/minidump.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7457079b85b05dca2a35dc29e0dac1204e6eda00
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue Aug 1 18:54:30 2017 +0200

    tdf#109347: don't verify SSL certificate for crashreport upload
    
    Seems that on Windows we can not rely on the CA information to include
    the necessary info to verify the connection to the server.
    
    Change-Id: Ieed639c438f5a66e538d1126bb1e8ec1ea02b168
    Reviewed-on: https://gerrit.libreoffice.org/40642
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/desktop/source/minidump/minidump.cxx b/desktop/source/minidump/minidump.cxx
index e44fc4ccfb2f..ac63bd41096c 100644
--- a/desktop/source/minidump/minidump.cxx
+++ b/desktop/source/minidump/minidump.cxx
@@ -108,6 +108,7 @@ bool uploadContent(std::map<std::string, std::string>& parameters, std::string&
 
     curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
     curl_easy_setopt(curl, CURLOPT_USERAGENT, kUserAgent);
+    curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
     // Set proxy information if necessary.
     if (!proxy.empty())
         curl_easy_setopt(curl, CURLOPT_PROXY, proxy.c_str());


More information about the Libreoffice-commits mailing list