diff options
author | Hans Nilsson <[email protected]> | 2018-05-02 15:48:08 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-05-04 15:32:06 +0200 |
commit | 61cc306b51e26489912eca2ace66d47253084763 (patch) | |
tree | b41b598a7db3c8b14f902042ed11118cb6547474 | |
parent | b5b627ded69445c06e8fbe34cda3421854c5582e (diff) | |
download | otp-61cc306b51e26489912eca2ace66d47253084763.tar.gz otp-61cc306b51e26489912eca2ace66d47253084763.tar.bz2 otp-61cc306b51e26489912eca2ace66d47253084763.zip |
ssh: Renegotiation -> renegotiate
-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. |