aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2015-02-09 10:11:42 +0100
committerIngela Anderton Andin <[email protected]>2015-02-09 10:11:42 +0100
commit450773958165539951cd431a9233ce7666ec20e2 (patch)
tree853cfb2b408c5c4f8ffa36a27d10f7612da2ca0e /lib
parentbca4b9783e9f2d6845b970f23f1b2f9a0ded7121 (diff)
downloadotp-450773958165539951cd431a9233ce7666ec20e2.tar.gz
otp-450773958165539951cd431a9233ce7666ec20e2.tar.bz2
otp-450773958165539951cd431a9233ce7666ec20e2.zip
ssl: erlang:timestamp -> os:timestamp
For comparison with file time stamps os:timestamp makes more sense and is present in 17 as well as 18.
Diffstat (limited to 'lib')
-rw-r--r--lib/ssl/src/ssl_manager.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_manager.erl b/lib/ssl/src/ssl_manager.erl
index 692938cf3f..f2d82a66d3 100644
--- a/lib/ssl/src/ssl_manager.erl
+++ b/lib/ssl/src/ssl_manager.erl
@@ -225,7 +225,7 @@ init([Name, Opts]) ->
session_cache_cb = CacheCb,
session_lifetime = SessionLifeTime,
session_validation_timer = Timer,
- last_pem_check = erlang:timestamp(),
+ last_pem_check = os:timestamp(),
clear_pem_cache = Interval
}}.
@@ -346,7 +346,7 @@ handle_info({delayed_clean_session, Key}, #state{session_cache = Cache,
handle_info(clear_pem_cache, #state{certificate_db = [_,_,PemChace],
clear_pem_cache = Interval,
last_pem_check = CheckPoint} = State) ->
- NewCheckPoint = erlang:timestamp(),
+ NewCheckPoint = os:timestamp(),
start_pem_cache_validator(PemChace, CheckPoint),
erlang:send_after(Interval, self(), clear_pem_cache),
{noreply, State#state{last_pem_check = NewCheckPoint}};