diff options
author | Ingela Anderton Andin <[email protected]> | 2015-03-10 15:40:37 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-03-11 17:39:16 +0100 |
commit | b65d8b7ba72a42cfe5df28577433e553d2c0f4ca (patch) | |
tree | 97e7af02625c606c482c0b3a464c92484d0edc02 /lib/ssl/src/dtls_connection.erl | |
parent | ad771692fec71f2929bdc715cc44ca24757c75f3 (diff) | |
download | otp-b65d8b7ba72a42cfe5df28577433e553d2c0f4ca.tar.gz otp-b65d8b7ba72a42cfe5df28577433e553d2c0f4ca.tar.bz2 otp-b65d8b7ba72a42cfe5df28577433e553d2c0f4ca.zip |
ssl: Dialyzer fixes
Diffstat (limited to 'lib/ssl/src/dtls_connection.erl')
-rw-r--r-- | lib/ssl/src/dtls_connection.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/src/dtls_connection.erl b/lib/ssl/src/dtls_connection.erl index 508983ddac..f177a8610d 100644 --- a/lib/ssl/src/dtls_connection.erl +++ b/lib/ssl/src/dtls_connection.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2013-2014. All Rights Reserved. +%% Copyright Ericsson AB 2013-2015. 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 @@ -146,7 +146,7 @@ init([Role, Host, Port, Socket, {SSLOpts0, _} = Options, User, CbInfo]) -> Handshake = ssl_handshake:init_handshake_history(), TimeStamp = calendar:datetime_to_gregorian_seconds({date(), time()}), try ssl_config:init(SSLOpts0, Role) of - {ok, Ref, CertDbHandle, FileRefHandle, CacheHandle, OwnCert, Key, DHParams} -> + {ok, Ref, CertDbHandle, FileRefHandle, CacheHandle, CRLDbInfo, OwnCert, Key, DHParams} -> Session = State0#state.session, State = State0#state{ tls_handshake_history = Handshake, @@ -155,6 +155,7 @@ init([Role, Host, Port, Socket, {SSLOpts0, _} = Options, User, CbInfo]) -> file_ref_db = FileRefHandle, cert_db_ref = Ref, cert_db = CertDbHandle, + crl_db = CRLDbInfo, session_cache = CacheHandle, private_key = Key, diffie_hellman_params = DHParams}, |