aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_auth.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2015-09-24 16:52:30 +0200
committerHans Nilsson <[email protected]>2015-09-24 16:52:30 +0200
commit8b480500f5004cf179f4993a56ad97e8f8171d94 (patch)
tree5f257de73d4c91137ce784d451c1757c56c0201c /lib/ssh/src/ssh_auth.erl
parenta45b4cccb1cf2c669fd73236602b74a9c1c4c773 (diff)
downloadotp-8b480500f5004cf179f4993a56ad97e8f8171d94.tar.gz
otp-8b480500f5004cf179f4993a56ad97e8f8171d94.tar.bz2
otp-8b480500f5004cf179f4993a56ad97e8f8171d94.zip
ssh: remove unused filed #ssh.kb_data
Diffstat (limited to 'lib/ssh/src/ssh_auth.erl')
-rw-r--r--lib/ssh/src/ssh_auth.erl7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/ssh/src/ssh_auth.erl b/lib/ssh/src/ssh_auth.erl
index ddf033c334..726f52132f 100644
--- a/lib/ssh/src/ssh_auth.erl
+++ b/lib/ssh/src/ssh_auth.erl
@@ -299,8 +299,7 @@ handle_userauth_request(#ssh_msg_userauth_request{user = User,
>>
},
{not_authorized, {User, undefined},
- ssh_transport:ssh_packet(Msg, Ssh#ssh{user = User,
- kb_data = Msg
+ ssh_transport:ssh_packet(Msg, Ssh#ssh{user = User
})}
end;
@@ -333,7 +332,6 @@ handle_userauth_info_response(#ssh_msg_userauth_info_response{num_responses = 1,
data = <<?UINT32(Sz), Password:Sz/binary>>},
#ssh{opts = Opts,
kb_tries_left = KbTriesLeft,
- kb_data = InfoMsg,
user = User,
userauth_supported_methods = Methods} = Ssh) ->
case check_password(User, unicode:characters_to_list(Password), Opts) of
@@ -345,8 +343,7 @@ handle_userauth_info_response(#ssh_msg_userauth_info_response{num_responses = 1,
ssh_transport:ssh_packet(#ssh_msg_userauth_failure{
authentications = Methods,
partial_success = false},
- Ssh#ssh{kb_data = undefined,
- kb_tries_left = max(KbTriesLeft-1, 0)}
+ Ssh#ssh{kb_tries_left = max(KbTriesLeft-1, 0)}
)}
end;