diff options
author | Matt Ludwigs <[email protected]> | 2019-06-07 13:41:09 -0700 |
---|---|---|
committer | Matt Ludwigs <[email protected]> | 2019-06-07 13:41:09 -0700 |
commit | 12a607217181af99d1d74dd03b3fbbb7f30c07e9 (patch) | |
tree | d1048384c394bdc9e3b94f9882fdae0b90fdc493 /lib/ssl | |
parent | 639ca4526b3f378bd1635fbc56f134d9c01e624b (diff) | |
download | otp-12a607217181af99d1d74dd03b3fbbb7f30c07e9.tar.gz otp-12a607217181af99d1d74dd03b3fbbb7f30c07e9.tar.bz2 otp-12a607217181af99d1d74dd03b3fbbb7f30c07e9.zip |
Fix SSL cb_info missing underscore in default
Diffstat (limited to 'lib/ssl')
-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 1e36a0591b..20b1e85ceb 100644 --- a/lib/ssl/src/ssl.erl +++ b/lib/ssl/src/ssl.erl @@ -1913,7 +1913,7 @@ validate_option(Opt, Value) -> throw({error, {options, {Opt, Value}}}). handle_cb_info({V1, V2, V3, V4}, {_,_,_,_,_}) -> - {V1,V2,V3,V4, list_to_atom(atom_to_list(V2) ++ "passive")}; + {V1,V2,V3,V4, list_to_atom(atom_to_list(V2) ++ "_passive")}; handle_cb_info(CbInfo, _) -> CbInfo. |