aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2018-05-07 12:49:45 +0200
committerErlang/OTP <[email protected]>2018-05-07 12:49:45 +0200
commit3a858588dbf5451eeaaebda381ce6d5adb04c6b6 (patch)
treef5d0b414ed177ccf4541b566e161d1b0511f4c6e
parentdbbe36f71e558f157ba54d9c6254be2879b33361 (diff)
parent61cc306b51e26489912eca2ace66d47253084763 (diff)
downloadotp-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
-rw-r--r--lib/ssh/src/ssh_connection_handler.erl2
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.