aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_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_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_io.erl')
-rw-r--r--lib/ssh/src/ssh_io.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ssh/src/ssh_io.erl b/lib/ssh/src/ssh_io.erl
index 01fc713569..832b144db9 100644
--- a/lib/ssh/src/ssh_io.erl
+++ b/lib/ssh/src/ssh_io.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2005-2012. All Rights Reserved.
+%% Copyright Ericsson AB 2005-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -24,7 +24,6 @@
-module(ssh_io).
-export([yes_no/2, read_password/2, read_line/2, format/2]).
--import(lists, [reverse/1]).
-include("ssh.hrl").
read_line(Prompt, Ssh) ->
@@ -81,7 +80,7 @@ format(Fmt, Args) ->
trim(Line) when is_list(Line) ->
- reverse(trim1(reverse(trim1(Line))));
+ lists:reverse(trim1(lists:reverse(trim1(Line))));
trim(Other) -> Other.
trim1([$\s|Cs]) -> trim(Cs);