diff options
author | Erlang/OTP <[email protected]> | 2018-05-07 12:49:45 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2018-05-07 12:49:45 +0200 |
commit | 3a858588dbf5451eeaaebda381ce6d5adb04c6b6 (patch) | |
tree | f5d0b414ed177ccf4541b566e161d1b0511f4c6e /lib/ssh/src/ssh_connection_handler.erl | |
parent | dbbe36f71e558f157ba54d9c6254be2879b33361 (diff) | |
parent | 61cc306b51e26489912eca2ace66d47253084763 (diff) | |
download | otp-3a858588dbf5451eeaaebda381ce6d5adb04c6b6.tar.gz otp-3a858588dbf5451eeaaebda381ce6d5adb04c6b6.tar.bz2 otp-3a858588dbf5451eeaaebda381ce6d5adb04c6b6.zip |
Merge branch 'hans/ssh/reneg_bug_20/OTP-15066' into maint-20
* hans/ssh/reneg_bug_20/OTP-15066:
ssh: Renegotiation -> renegotiate
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index ad23d82ea8..36152bacf7 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -522,7 +522,7 @@ role({_,Role}) -> Role; role({_,Role,_}) -> Role. -spec renegotiation(state_name()) -> boolean(). -renegotiation({_,_,ReNeg}) -> ReNeg == renegotiation; +renegotiation({_,_,ReNeg}) -> ReNeg == renegotiate; renegotiation(_) -> false. |