From a3d17591b2b3919f2b63b40966a7de374c02ba8d Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Mon, 15 Jun 2009 00:46:20 +0000 Subject: [PATCH] Clear hardcoded CA list to avoid OS-inflicted problems. --- xmltooling/soap/impl/CURLSOAPTransport.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xmltooling/soap/impl/CURLSOAPTransport.cpp b/xmltooling/soap/impl/CURLSOAPTransport.cpp index 90e8223..0bd3715 100644 --- a/xmltooling/soap/impl/CURLSOAPTransport.cpp +++ b/xmltooling/soap/impl/CURLSOAPTransport.cpp @@ -311,6 +311,7 @@ CURL* CURLPool::get(const SOAPTransport::Address& addr) curl_easy_setopt(handle,CURLOPT_SSL_CIPHER_LIST,"ALL:!aNULL:!LOW:!EXPORT:!SSLv2"); // Verification of the peer is via TrustEngine only. curl_easy_setopt(handle,CURLOPT_SSL_VERIFYPEER,0); + curl_easy_setopt(handle,CURLOPT_CAINFO,NULL); curl_easy_setopt(handle,CURLOPT_HEADERFUNCTION,&curl_header_hook); curl_easy_setopt(handle,CURLOPT_WRITEFUNCTION,&curl_write_hook); curl_easy_setopt(handle,CURLOPT_DEBUGFUNCTION,&curl_debug_hook); -- 2.1.4