aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngela Andin <[email protected]>2017-05-11 17:04:29 +0200
committerGitHub <[email protected]>2017-05-11 17:04:29 +0200
commit3c667750d16cd25f4b47fa230475050cb345fd8a (patch)
tree60dc60c41a79b720267bc4bad9561b4821920376
parent0298a195873c606ac885d37f54a098eca3d7905a (diff)
parenta5434a323afb1972195aa5f55b4894595df2c24f (diff)
downloadotp-3c667750d16cd25f4b47fa230475050cb345fd8a.tar.gz
otp-3c667750d16cd25f4b47fa230475050cb345fd8a.tar.bz2
otp-3c667750d16cd25f4b47fa230475050cb345fd8a.zip
Merge pull request #1454 from joedevivo/remove-ct-pal-from-ssl-connection
removed ct:pal call in ssl_connection
-rw-r--r--lib/ssl/src/ssl_connection.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl
index a5569460d6..ad220ae9de 100644
--- a/lib/ssl/src/ssl_connection.erl
+++ b/lib/ssl/src/ssl_connection.erl
@@ -858,7 +858,6 @@ handle_common_event(internal, #change_cipher_spec{type = <<1>>}, StateName,
StateName, State);
handle_common_event(_Type, Msg, StateName, #state{negotiated_version = Version} = State,
_) ->
- ct:pal("Unexpected msg ~p", [Msg]),
Alert = ?ALERT_REC(?FATAL,?UNEXPECTED_MESSAGE),
handle_own_alert(Alert, Version, {StateName, Msg}, State).