aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_no_io.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2013-11-27 08:26:15 +0100
committerIngela Anderton Andin <[email protected]>2013-11-27 08:26:15 +0100
commit7211a984fc82b6c1dd8f710af15674ee7112ff53 (patch)
tree4800284952eabe02749013c6fae191ac5e2bc3d0 /lib/ssh/src/ssh_no_io.erl
parent22e2b396e2fabe27c5a74843495c3eaf6900e211 (diff)
parent9fa7a3b3514bee6a7136aeaa80ea4c07f7d8b465 (diff)
downloadotp-7211a984fc82b6c1dd8f710af15674ee7112ff53.tar.gz
otp-7211a984fc82b6c1dd8f710af15674ee7112ff53.tar.bz2
otp-7211a984fc82b6c1dd8f710af15674ee7112ff53.zip
Merge branch 'ia/ssh/no_io/OTP-11490' into maint
* ia/ssh/no_io/OTP-11490: ssh: Correct arity in ssh_no_io.erl
Diffstat (limited to 'lib/ssh/src/ssh_no_io.erl')
-rw-r--r--lib/ssh/src/ssh_no_io.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ssh/src/ssh_no_io.erl b/lib/ssh/src/ssh_no_io.erl
index 9f83506cdd..825a0d4af5 100644
--- a/lib/ssh/src/ssh_no_io.erl
+++ b/lib/ssh/src/ssh_no_io.erl
@@ -24,27 +24,27 @@
-module(ssh_no_io).
-include("ssh_transport.hrl").
--export([yes_no/1, read_password/1, read_line/1, format/2]).
+-export([yes_no/2, read_password/2, read_line/2, format/2]).
-yes_no(_Prompt) ->
+yes_no(_, _) ->
throw({{no_io_allowed, yes_no},
#ssh_msg_disconnect{code = ?SSH_DISCONNECT_SERVICE_NOT_AVAILABLE,
description = "User interaction is not allowed",
language = "en"}}).
-read_password(_Prompt) ->
+read_password(_, _) ->
throw({{no_io_allowed, read_password},
#ssh_msg_disconnect{code = ?SSH_DISCONNECT_SERVICE_NOT_AVAILABLE,
description = "User interaction is not allowed",
language = "en"}}).
-read_line(_Prompt) ->
+read_line(_, _) ->
throw({{no_io_allowed, read_line},
#ssh_msg_disconnect{code = ?SSH_DISCONNECT_SERVICE_NOT_AVAILABLE,
description = "User interaction is not allowed",
language = "en"}} ).
-format(_Fmt, _Args) ->
+format(_, _) ->
throw({{no_io_allowed, format},
#ssh_msg_disconnect{code = ?SSH_DISCONNECT_SERVICE_NOT_AVAILABLE,
description = "User interaction is not allowed",