aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2012-11-08 16:50:56 +0100
committerFredrik Gustafsson <[email protected]>2012-11-08 16:50:56 +0100
commit94db3fe12a76c24154a241f9b8afe12b9949f4b9 (patch)
treea0888e2ab661acfb0e819d6a53ece9336887f509 /lib/ssh/src
parent645372700c4c2d799595ba4c964bb5945990009f (diff)
parente0095dfe77c48fe2b6c369b5247c67cc86a6feab (diff)
downloadotp-94db3fe12a76c24154a241f9b8afe12b9949f4b9.tar.gz
otp-94db3fe12a76c24154a241f9b8afe12b9949f4b9.tar.bz2
otp-94db3fe12a76c24154a241f9b8afe12b9949f4b9.zip
Merge branch 'maint'
* maint: Doc for quiet_mode SSH quiet mode
Diffstat (limited to 'lib/ssh/src')
-rw-r--r--lib/ssh/src/ssh.erl5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl
index 66d1d024ed..d09f6cf34b 100644
--- a/lib/ssh/src/ssh.erl
+++ b/lib/ssh/src/ssh.erl
@@ -344,6 +344,8 @@ handle_option([{auth_methods, _} = Opt | Rest], SocketOptions, SshOptions) ->
handle_option(Rest, SocketOptions, [handle_ssh_option(Opt) | SshOptions]);
handle_option([{pref_public_key_algs, _} = Opt | Rest], SocketOptions, SshOptions) ->
handle_option(Rest, SocketOptions, [handle_ssh_option(Opt) | SshOptions]);
+handle_option([{quiet_mode, _} = 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).
@@ -416,6 +418,9 @@ handle_ssh_option({shell, {Module, Function, _}} = Opt) when is_atom(Module),
Opt;
handle_ssh_option({shell, Value} = Opt) when is_function(Value) ->
Opt;
+handle_ssh_option({quiet_mode, Value} = Opt) when Value == true;
+ Value == false ->
+ Opt;
handle_ssh_option(Opt) ->
throw({error, {eoptions, Opt}}).