diff options
author | Hans Nilsson <[email protected]> | 2016-01-07 15:21:45 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-01-08 13:03:46 +0100 |
commit | ed7d29ca3b6e8a165bdeb182799cbba5e204326f (patch) | |
tree | 2c712f2e97101d272c59999e288bca717a8acbdd /lib/ssh/src/ssh_connection_handler.erl | |
parent | 04a9f3d11d15035c583dbf3ff3009f186611faac (diff) | |
download | otp-ed7d29ca3b6e8a165bdeb182799cbba5e204326f.tar.gz otp-ed7d29ca3b6e8a165bdeb182799cbba5e204326f.tar.bz2 otp-ed7d29ca3b6e8a165bdeb182799cbba5e204326f.zip |
ssh: handle secondary ssh_msg_userauth_info_request message
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{}, |