diff options
author | Fredrik Gustafsson <[email protected]> | 2013-10-31 09:11:14 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-10-31 09:11:14 +0100 |
commit | 96727eeace1f086e62dd125c473ba5a2de350c81 (patch) | |
tree | bb202a545c9dca15af66005f14159d1a48977a10 | |
parent | b646475f55504acb9b55345e1de2899bb7f18d19 (diff) | |
parent | fd60460ddcbc83907768ec00c234c5e28a7fa549 (diff) | |
download | otp-96727eeace1f086e62dd125c473ba5a2de350c81.tar.gz otp-96727eeace1f086e62dd125c473ba5a2de350c81.tar.bz2 otp-96727eeace1f086e62dd125c473ba5a2de350c81.zip |
Merge branch 'ksquaredkey/fix_inet_tls_dist/OTP-11447' into maint
* ksquaredkey/fix_inet_tls_dist/OTP-11447:
Remove extraneous dev debug code left in the close function.
-rw-r--r-- | lib/ssl/src/inet_tls_dist.erl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ssl/src/inet_tls_dist.erl b/lib/ssl/src/inet_tls_dist.erl index 57c859bf24..7367b5c224 100644 --- a/lib/ssl/src/inet_tls_dist.erl +++ b/lib/ssl/src/inet_tls_dist.erl @@ -95,11 +95,6 @@ do_setup(Kernel, Node, Type, MyNode, LongOrShortNames, SetupTime) -> end. close(Socket) -> - try - erlang:error(foo) - catch _:_ -> - io:format("close called ~p ~p~n",[Socket, erlang:get_stacktrace()]) - end, gen_tcp:close(Socket), ok. |