From a4edbd619c624d2ca2f343da19a88fba74470e93 Mon Sep 17 00:00:00 2001
From: Hans Nilsson <hans@erlang.org>
Date: Fri, 17 Mar 2017 13:23:42 +0100
Subject: ssh: remove from code

---
 lib/ssh/src/ssh_options.erl | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/lib/ssh/src/ssh_options.erl b/lib/ssh/src/ssh_options.erl
index 395be6b220..a882a01eaf 100644
--- a/lib/ssh/src/ssh_options.erl
+++ b/lib/ssh/src/ssh_options.erl
@@ -200,17 +200,6 @@ save({K,V}, _, _) when K == reuseaddr ;
 save({allow_user_interaction,V}, Opts, Vals) ->
     save({user_interaction,V}, Opts, Vals);
 
-save({public_key_alg,V}, Defs, Vals) ->         % To remove in OTP-20
-    New = case V of
-              'ssh-rsa' -> ['ssh-rsa', 'ssh-dss'];
-              ssh_rsa   -> ['ssh-rsa', 'ssh-dss'];
-              'ssh-dss' -> ['ssh-dss', 'ssh-rsa'];
-              ssh_dsa   -> ['ssh-dss', 'ssh-rsa'];
-              _ -> error({eoptions, {public_key_alg,V},
-                          "Unknown algorithm, try pref_public_key_algs instead"})
-          end,
-    save({pref_public_key_algs,New}, Defs, Vals);
-
 %% Special case for socket options 'inet' and 'inet6'
 save(Inet, Defs, OptMap) when Inet==inet ; Inet==inet6 ->
     save({inet,Inet}, Defs, OptMap);
-- 
cgit v1.2.3