diff options
author | Ingela Anderton Andin <[email protected]> | 2018-07-03 07:58:25 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-07-04 11:02:46 +0200 |
commit | f610e27fe71d0b6a19eb836c3d13cc8de610b9ef (patch) | |
tree | 8d26316abd4f3d85337cf9cd6bc485a5e4e8cf6d | |
parent | 26ed7aa618b4860340d646f8f2b545857cee1289 (diff) | |
download | otp-f610e27fe71d0b6a19eb836c3d13cc8de610b9ef.tar.gz otp-f610e27fe71d0b6a19eb836c3d13cc8de610b9ef.tar.bz2 otp-f610e27fe71d0b6a19eb836c3d13cc8de610b9ef.zip |
ssl: Do not use legacy format
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index 8ea4740ea4..c5f75894cd 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -2523,7 +2523,7 @@ ssl_options_list([ciphers = Key | Keys], [Value | Values], Acc) -> ssl_options_list(Keys, Values, [{Key, lists:map( fun(Suite) -> - ssl_cipher:erl_suite_definition(Suite) + ssl_cipher:suite_definition(Suite) end, Value)} | Acc]); ssl_options_list([Key | Keys], [Value | Values], Acc) -> |