aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_auth.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2016-01-07 15:21:45 +0100
committerHans Nilsson <[email protected]>2016-01-08 13:03:46 +0100
commited7d29ca3b6e8a165bdeb182799cbba5e204326f (patch)
tree2c712f2e97101d272c59999e288bca717a8acbdd /lib/ssh/src/ssh_auth.erl
parent04a9f3d11d15035c583dbf3ff3009f186611faac (diff)
downloadotp-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_auth.erl')
-rw-r--r--lib/ssh/src/ssh_auth.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_auth.erl b/lib/ssh/src/ssh_auth.erl
index fdbb5c152a..b71bed033a 100644
--- a/lib/ssh/src/ssh_auth.erl
+++ b/lib/ssh/src/ssh_auth.erl
@@ -477,7 +477,7 @@ keyboard_interact_get_responses(_, undefined, Password, _, _, _, _, _,
1) when Password =/= undefined ->
[Password]; %% Password auth implemented with keyboard-interaction and passwd is known
keyboard_interact_get_responses(_, _, _, _, _, _, _, _, 0) ->
- [""];
+ [];
keyboard_interact_get_responses(false, undefined, undefined, _, _, _, [Prompt|_], Opts, _) ->
ssh_no_io:read_line(Prompt, Opts); %% Throws error as keyboard interaction is not allowed
keyboard_interact_get_responses(true, undefined, _,IoCb, Name, Instr, PromptInfos, Opts, _) ->