diff options
author | Hans Nilsson <[email protected]> | 2018-05-02 15:38:04 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-05-02 15:38:04 +0200 |
commit | 1f9cb0d28987f61e10599d6660e3b1ab2fc6bc04 (patch) | |
tree | 8a70bd611b3bdfd39cffca0634f8667fe885f64c | |
parent | 90edf69ba7acbfaa55a709fa115ce8bb782b9dc9 (diff) | |
download | otp-1f9cb0d28987f61e10599d6660e3b1ab2fc6bc04.tar.gz otp-1f9cb0d28987f61e10599d6660e3b1ab2fc6bc04.tar.bz2 otp-1f9cb0d28987f61e10599d6660e3b1ab2fc6bc04.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 fc75945a5b..c146619a06 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -1475,7 +1475,7 @@ role({_,Role,_}) -> Role. %%-------------------------------------------------------------------- %% Check the StateName to see if we are in the renegotiation phase -renegotiation({_,_,ReNeg}) -> ReNeg == renegotiation; +renegotiation({_,_,ReNeg}) -> ReNeg == renegotiate; renegotiation(_) -> false. %%-------------------------------------------------------------------- |