aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2010-06-14 09:48:42 +0000
committerErlang/OTP <[email protected]>2010-06-14 09:48:42 +0000
commit08e6a9ec2e50972dbf67797a9196895103534aff (patch)
tree864a5e43070364b8d56dc9062f48a55a94126fec /lib/ssl
parentca4462cebeccfd404ee48e5e64a54dd0defebec1 (diff)
downloadotp-08e6a9ec2e50972dbf67797a9196895103534aff.tar.gz
otp-08e6a9ec2e50972dbf67797a9196895103534aff.tar.bz2
otp-08e6a9ec2e50972dbf67797a9196895103534aff.zip
OTP-8695 New ssl default
Ssl has now switched default implementation and removed deprecated certificate handling. All certificate handling is done by the public_key application.
Diffstat (limited to 'lib/ssl')
-rw-r--r--lib/ssl/src/ssl.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl.erl b/lib/ssl/src/ssl.erl
index 000ceb241e..35d27713b8 100644
--- a/lib/ssl/src/ssl.erl
+++ b/lib/ssl/src/ssl.erl
@@ -105,7 +105,7 @@ connect(Address, Port, Options) ->
connect(Address, Port, Options, infinity).
connect(Address, Port, Options0, Timeout) ->
- case proplists:get_value(ssl_imp, Options0, old) of
+ case proplists:get_value(ssl_imp, Options0, new) of
new ->
new_connect(Address, Port, Options0, Timeout);
old ->