diff options
author | Hans Nilsson <[email protected]> | 2017-03-21 15:44:44 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-07 10:23:33 +0200 |
commit | 57d994270d63e7a9ce80eece3c1c3aeca79d3ea4 (patch) | |
tree | 99a7aa83a5366ca80ea144bc6fded3eba0a8e5e9 /lib/ssh/src/ssh.erl | |
parent | 90aacace4bdb1c883c3829bc66c1c616a81943d9 (diff) | |
download | otp-57d994270d63e7a9ce80eece3c1c3aeca79d3ea4.tar.gz otp-57d994270d63e7a9ce80eece3c1c3aeca79d3ea4.tar.bz2 otp-57d994270d63e7a9ce80eece3c1c3aeca79d3ea4.zip |
ssh: fix ssh_system_sup naming of Host-Port-Profile
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index ff424b738c..9047b7e0f0 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -475,6 +475,6 @@ finalize_start(Host, Port, Profile, Options0, F) -> end. %%%---------------------------------------------------------------- -fmt_host(any) -> any; +fmt_host(any) -> "any"; fmt_host(IP) when is_tuple(IP) -> inet:ntoa(IP); fmt_host(Str) when is_list(Str) -> Str. |