diff options
author | Ingela Anderton Andin <[email protected]> | 2010-05-26 14:38:02 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-05-26 14:38:02 +0000 |
commit | eadfccf77cbf506c3a1a73b0eff1711dae0a5f4c (patch) | |
tree | c311b9f063e4aaf1f55e906150d16d46852b34f4 /lib/ssl/src/ssl_session_cache_api.erl | |
parent | 36a59bf8581a53b2da411db6ab9d92e014787c2a (diff) | |
download | otp-eadfccf77cbf506c3a1a73b0eff1711dae0a5f4c.tar.gz otp-eadfccf77cbf506c3a1a73b0eff1711dae0a5f4c.tar.bz2 otp-eadfccf77cbf506c3a1a73b0eff1711dae0a5f4c.zip |
Added option list argument to the init function in ssl_session_cache_api.
Diffstat (limited to 'lib/ssl/src/ssl_session_cache_api.erl')
-rw-r--r-- | lib/ssl/src/ssl_session_cache_api.erl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/ssl/src/ssl_session_cache_api.erl b/lib/ssl/src/ssl_session_cache_api.erl index d2e846e9fd..f8416bf327 100644 --- a/lib/ssl/src/ssl_session_cache_api.erl +++ b/lib/ssl/src/ssl_session_cache_api.erl @@ -1,19 +1,19 @@ %% %% %CopyrightBegin% -%% -%% Copyright Ericsson AB 2008-2009. All Rights Reserved. -%% +%% +%% Copyright Ericsson AB 2008-2010. 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 %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. -%% +%% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. -%% +%% %% %CopyrightEnd% %% @@ -25,7 +25,7 @@ behaviour_info(callbacks) -> [ - {init, 0}, + {init, 1}, {terminate, 1}, {lookup, 2}, {update, 3}, |