aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_system_sup.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2017-04-07 10:20:29 +0200
committerHans Nilsson <[email protected]>2017-04-07 10:20:29 +0200
commit90aacace4bdb1c883c3829bc66c1c616a81943d9 (patch)
tree37f2957737075a567d05412e9ff0156a88c6182e /lib/ssh/src/ssh_system_sup.erl
parentd88d2cd8e9c50122923adc8b17904664f6360528 (diff)
parent4d6393bc4df58defbc22c5d97e28bbfdd8794fc6 (diff)
downloadotp-90aacace4bdb1c883c3829bc66c1c616a81943d9.tar.gz
otp-90aacace4bdb1c883c3829bc66c1c616a81943d9.tar.bz2
otp-90aacace4bdb1c883c3829bc66c1c616a81943d9.zip
Merge branch 'hans/ssh/refactor_ssh/OTP-14264'
Also enables tuple IP-addresses in ssh:connect et al. OTP-14243
Diffstat (limited to 'lib/ssh/src/ssh_system_sup.erl')
-rw-r--r--lib/ssh/src/ssh_system_sup.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_system_sup.erl b/lib/ssh/src/ssh_system_sup.erl
index b0bbd3aae5..5a58ef1c44 100644
--- a/lib/ssh/src/ssh_system_sup.erl
+++ b/lib/ssh/src/ssh_system_sup.erl
@@ -131,7 +131,7 @@ init([Options]) ->
RestartStrategy = one_for_one,
MaxR = 0,
MaxT = 3600,
- Children = case ?GET_INTERNAL_OPT(asocket,Options,undefined) of
+ Children = case ?GET_INTERNAL_OPT(connected_socket,Options,undefined) of
undefined -> child_specs(Options);
_ -> []
end,