diff options
author | Ingela Anderton Andin <[email protected]> | 2010-06-14 09:48:42 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-06-14 09:48:42 +0000 |
commit | 08e6a9ec2e50972dbf67797a9196895103534aff (patch) | |
tree | 864a5e43070364b8d56dc9062f48a55a94126fec | |
parent | ca4462cebeccfd404ee48e5e64a54dd0defebec1 (diff) | |
download | otp-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.
-rw-r--r-- | lib/ssl/src/ssl.erl | 2 |
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 -> |