From 609673d93b8d9d53b687d84afe40b7f30f43adf3 Mon Sep 17 00:00:00 2001 From: Rob Percival Date: Mon, 12 Sep 2016 16:57:38 +0100 Subject: Default CT_POLICY_EVAL_CTX.epoch_time_in_ms to time() Reviewed-by: Viktor Dukhovni Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1554) (cherry picked from commit e25233d99c30885bdf97bfb6df657e13ca2bf1da) --- crypto/ct/ct_policy.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'crypto/ct') diff --git a/crypto/ct/ct_policy.c b/crypto/ct/ct_policy.c index 074589db93..d2f72c4a5a 100644 --- a/crypto/ct/ct_policy.c +++ b/crypto/ct/ct_policy.c @@ -13,18 +13,25 @@ #include #include +#include #include "ct_locl.h" CT_POLICY_EVAL_CTX *CT_POLICY_EVAL_CTX_new(void) { CT_POLICY_EVAL_CTX *ctx = OPENSSL_zalloc(sizeof(CT_POLICY_EVAL_CTX)); + time_t epoch_time_in_s; if (ctx == NULL) { CTerr(CT_F_CT_POLICY_EVAL_CTX_NEW, ERR_R_MALLOC_FAILURE); return NULL; } + // Use the current time if available. + time(&epoch_time_in_s); + if (epoch_time_in_s != -1) + ctx->epoch_time_in_ms = epoch_time_in_s * 1000; + return ctx; } -- cgit v1.2.3