aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/tls_connection_1_3.erl
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2019-01-09 14:22:21 +0100
committerPéter Dimitrov <[email protected]>2019-01-11 09:59:12 +0100
commit757f2d4c1e3313b1a793549355c2bb3104635344 (patch)
tree3752e36a094e5ab16cfb0ca975c6a13de4e7ee03 /lib/ssl/src/tls_connection_1_3.erl
parentdc9ec91e8ba3e8bdae74c7090a9969211e355f07 (diff)
downloadotp-757f2d4c1e3313b1a793549355c2bb3104635344.tar.gz
otp-757f2d4c1e3313b1a793549355c2bb3104635344.tar.bz2
otp-757f2d4c1e3313b1a793549355c2bb3104635344.zip
ssl: Fix dialyzer warnings
Change-Id: I9269825c833d1461369828a9228f384ccf2543a9
Diffstat (limited to 'lib/ssl/src/tls_connection_1_3.erl')
-rw-r--r--lib/ssl/src/tls_connection_1_3.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssl/src/tls_connection_1_3.erl b/lib/ssl/src/tls_connection_1_3.erl
index ceaf6e8bca..f5f91cedd7 100644
--- a/lib/ssl/src/tls_connection_1_3.erl
+++ b/lib/ssl/src/tls_connection_1_3.erl
@@ -164,9 +164,9 @@ negotiated(internal,
#alert{} = Alert ->
ssl_connection:handle_own_alert(Alert, {3,4}, negotiated, State0);
M ->
- %% update connection_states with cipher
- State = update_state(State0, M),
- {next_state, wait_flight2, State, [{next_event, internal, M}]}
+ %% TODO: implement update_state
+ %% State = update_state(State0, M),
+ {next_state, wait_flight2, State0, [{next_event, internal, M}]}
end.