You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2010/07/29 02:02:09 UTC

svn commit: r980269 - /couchdb/trunk/src/ibrowse/ibrowse_http_client.erl

Author: kocolosk
Date: Thu Jul 29 00:02:08 2010
New Revision: 980269

URL: http://svn.apache.org/viewvc?rev=980269&view=rev
Log:
more relaxed verification of SSL chains, COUCHDB-840

Modified:
    couchdb/trunk/src/ibrowse/ibrowse_http_client.erl

Modified: couchdb/trunk/src/ibrowse/ibrowse_http_client.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/ibrowse/ibrowse_http_client.erl?rev=980269&r1=980268&r2=980269&view=diff
==============================================================================
--- couchdb/trunk/src/ibrowse/ibrowse_http_client.erl (original)
+++ couchdb/trunk/src/ibrowse/ibrowse_http_client.erl Thu Jul 29 00:02:08 2010
@@ -119,7 +119,7 @@ init(#url{host=Host, port=Port, protocol
         host = Host,
         port = Port,
         is_ssl = (Protocol == https),
-        ssl_options = [{ssl_imp, new}]
+        ssl_options = [{ssl_imp, new}, {depth, 9}]
     },
     put(ibrowse_trace_token, [Host, $:, integer_to_list(Port)]),
     put(my_trace_flag, ibrowse_lib:get_trace_status(Host, Port)),