diff options
author | Ingela Anderton Andin <[email protected]> | 2013-11-19 10:04:47 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-12-02 09:50:27 +0100 |
commit | b84f16e07336eecfb6dd30a4ef3824de76525265 (patch) | |
tree | c4398187a5f0c4c942a1b7fa5f6cd2a6d4798054 /lib/ssl/src/ssl_dist_sup.erl | |
parent | c46f856dda536d92537461115112b2021c08b52a (diff) | |
download | otp-b84f16e07336eecfb6dd30a4ef3824de76525265.tar.gz otp-b84f16e07336eecfb6dd30a4ef3824de76525265.tar.bz2 otp-b84f16e07336eecfb6dd30a4ef3824de76525265.zip |
ssl: API and supervisor
Diffstat (limited to 'lib/ssl/src/ssl_dist_sup.erl')
-rw-r--r-- | lib/ssl/src/ssl_dist_sup.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_dist_sup.erl b/lib/ssl/src/ssl_dist_sup.erl index 9d9afb7707..22614a2d34 100644 --- a/lib/ssl/src/ssl_dist_sup.erl +++ b/lib/ssl/src/ssl_dist_sup.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2011-2011. All Rights Reserved. +%% Copyright Ericsson AB 2011-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 @@ -65,7 +65,7 @@ session_and_cert_manager_child_spec() -> connection_manager_child_spec() -> Name = ssl_connection_dist, - StartFunc = {ssl_connection_sup, start_link_dist, []}, + StartFunc = {tls_connection_sup, start_link_dist, []}, Restart = permanent, Shutdown = 4000, Modules = [ssl_connection], |