aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2012-11-29 14:59:13 +0100
committerFredrik Gustafsson <[email protected]>2012-11-29 14:59:13 +0100
commit19c560d98202b87e5b158f673fd48ba347e623ee (patch)
tree1b3eb6265cb82f372afbc5c52590c6316b3425a3 /lib/ssh/src
parentb66486468476734419ec4e3aa9cbac766aa012fe (diff)
downloadotp-19c560d98202b87e5b158f673fd48ba347e623ee.tar.gz
otp-19c560d98202b87e5b158f673fd48ba347e623ee.tar.bz2
otp-19c560d98202b87e5b158f673fd48ba347e623ee.zip
Removed unused code ssh.erl and changed tests
Diffstat (limited to 'lib/ssh/src')
-rw-r--r--lib/ssh/src/ssh.erl4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl
index e089dd20bd..719c97e940 100644
--- a/lib/ssh/src/ssh.erl
+++ b/lib/ssh/src/ssh.erl
@@ -364,8 +364,6 @@ handle_option([{quiet_mode, _} = Opt|Rest], SocketOptions, SshOptions) ->
handle_option(Rest, SocketOptions, [handle_ssh_option(Opt) | SshOptions]);
handle_option([{idle_time, _} = Opt | Rest], SocketOptions, SshOptions) ->
handle_option(Rest, SocketOptions, [handle_ssh_option(Opt) | SshOptions]);
-handle_option([{sftpd_vsn, _} = Opt | Rest], SocketOptions, SshOptions) ->
- handle_option(Rest, SocketOptions, [handle_ssh_option(Opt) | SshOptions]);
handle_option([Opt | Rest], SocketOptions, SshOptions) ->
handle_option(Rest, [handle_inet_option(Opt) | SocketOptions], SshOptions).
@@ -442,8 +440,6 @@ handle_ssh_option({quiet_mode, Value} = Opt) when Value == true;
Opt;
handle_ssh_option({idle_time, Value} = Opt) when is_integer(Value), Value > 0 ->
Opt;
-handle_ssh_option({sftpd_vsn, Value} = Opt) when is_integer(Value), Value =:= 6 ->
- Opt;
handle_ssh_option(Opt) ->
throw({error, {eoptions, Opt}}).