diff options
author | Ingela Anderton Andin <[email protected]> | 2012-11-06 10:55:39 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-12-13 22:33:14 +0100 |
commit | 671cf55d2388ef3c30f8e0e6b3e5ec824b02da09 (patch) | |
tree | f44994de421b80cb8c646ce66159b1cf887df969 /lib/ssh/src/ssh_connection_handler.erl | |
parent | 2084f7e079c951fdadebe23dcff5ec247c6e0158 (diff) | |
download | otp-671cf55d2388ef3c30f8e0e6b3e5ec824b02da09.tar.gz otp-671cf55d2388ef3c30f8e0e6b3e5ec824b02da09.tar.bz2 otp-671cf55d2388ef3c30f8e0e6b3e5ec824b02da09.zip |
ssh: Document and clean up SSH behaviours
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index d8950a7b67..b79e8530b7 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -749,9 +749,9 @@ extract_algs([], NewList) -> lists:reverse(NewList); extract_algs([H|T], NewList) -> case H of - ssh_dsa -> + 'ssh-dss' -> extract_algs(T, ["ssh-dss"|NewList]); - ssh_rsa -> + 'ssh-rsa' -> extract_algs(T, ["ssh-rsa"|NewList]) end. available_host_key(KeyCb, "ssh-dss"= Alg, Opts) -> |