diff options
author | Henrik Nord <[email protected]> | 2016-01-11 15:53:42 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2016-01-11 15:53:42 +0100 |
commit | 12dffc7f0c85aa4662b97cba4af2c9ae2ba74083 (patch) | |
tree | 8910bb6655231190a86c1e880963a0c11e349369 /lib/ssh/src/ssh_connection_handler.erl | |
parent | f0bc967c38d8859ff794e93082e9d2fb495f34d3 (diff) | |
parent | 7cf9a621c5280a3e97967c4c63ab6ca1adde69c3 (diff) | |
download | otp-12dffc7f0c85aa4662b97cba4af2c9ae2ba74083.tar.gz otp-12dffc7f0c85aa4662b97cba4af2c9ae2ba74083.tar.bz2 otp-12dffc7f0c85aa4662b97cba4af2c9ae2ba74083.zip |
Merge branch 'maint-18' into maint
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index f082db136c..ce1931e4f4 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -648,10 +648,12 @@ userauth_keyboard_interactive(Msg = #ssh_msg_userauth_failure{}, userauth_keyboard_interactive_info_response(Msg=#ssh_msg_userauth_failure{}, #state{ssh_params = #ssh{role = client}} = State) -> userauth(Msg, State); - userauth_keyboard_interactive_info_response(Msg=#ssh_msg_userauth_success{}, #state{ssh_params = #ssh{role = client}} = State) -> - userauth(Msg, State). + userauth(Msg, State); +userauth_keyboard_interactive_info_response(Msg=#ssh_msg_userauth_info_request{}, + #state{ssh_params = #ssh{role = client}} = State) -> + userauth_keyboard_interactive(Msg, State). %%-------------------------------------------------------------------- -spec connected({#ssh_msg_kexinit{}, binary()}, %%| %% #ssh_msg_kexdh_init{}, |