diff options
author | Ingela Andin <[email protected]> | 2019-06-11 18:09:34 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2019-06-11 18:09:34 +0200 |
commit | 3faa598e44f95db1521102cebe2bc862ec46083b (patch) | |
tree | a9e23eeb94510482117b55181006773890533a61 /lib/ssl | |
parent | f9f8e4137cc2860444fdf412c5dbf9b7d0cb1cf3 (diff) | |
parent | 12a607217181af99d1d74dd03b3fbbb7f30c07e9 (diff) | |
download | otp-3faa598e44f95db1521102cebe2bc862ec46083b.tar.gz otp-3faa598e44f95db1521102cebe2bc862ec46083b.tar.bz2 otp-3faa598e44f95db1521102cebe2bc862ec46083b.zip |
Merge pull request #2277 from mattludwigs/fix-ssl-passive-flag-default
Fix SSL cb_info missing underscore in default
OTP-15887
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. |