diff options
author | Hans Nilsson <[email protected]> | 2017-02-28 12:19:37 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-07 10:19:55 +0200 |
commit | 7925b59450dd6f34b756da7b10dd10af95304d94 (patch) | |
tree | 05888de759e41f6563308a1eecb22b521d1497eb /lib/ssh/src/ssh_system_sup.erl | |
parent | 7b21b7b5fa0b6da173080bc8322e99eead905191 (diff) | |
download | otp-7925b59450dd6f34b756da7b10dd10af95304d94.tar.gz otp-7925b59450dd6f34b756da7b10dd10af95304d94.tar.bz2 otp-7925b59450dd6f34b756da7b10dd10af95304d94.zip |
ssh: Option pruning
Diffstat (limited to 'lib/ssh/src/ssh_system_sup.erl')
-rw-r--r-- | lib/ssh/src/ssh_system_sup.erl | 2 |
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, |