~ubuntu-branches/ubuntu/karmic/erlang/karmic-security

« back to all changes in this revision

Viewing changes to lib/ssh/src/ssh_cli.erl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-06-11 12:18:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090611121807-ks7eb4xrt7dsysgx
Tags: 1:13.b.1-dfsg-1
* New upstream release.
* Removed unnecessary dependency of erlang-os-mon on erlang-observer and
  erlang-tools and added missing dependency of erlang-nox on erlang-os-mon
  (closes: #529512).
* Removed a patch to eunit application because the bug was fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
        _ -> B
399
399
    end.            
400
400
 
401
 
bin_to_list(B) when binary(B) ->
 
401
bin_to_list(B) when is_binary(B) ->
402
402
    binary_to_list(B);
403
 
bin_to_list(L) when list(L) ->
 
403
bin_to_list(L) when is_list(L) ->
404
404
    lists:flatten([bin_to_list(A) || A <- L]);
405
 
bin_to_list(I) when integer(I) ->
 
405
bin_to_list(I) when is_integer(I) ->
406
406
    I.
407
407
 
408
408
start_shell(ConnectionManager, State) ->