From dc047d31fa0c31872db8601a1b9fcd35f24d8589 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 19 Aug 2016 16:21:21 +0100 Subject: Set certificate times in one function. Reviewed-by: Rich Salz --- apps/req.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'apps/req.c') diff --git a/apps/req.c b/apps/req.c index 112553b48e..bd18708e3a 100644 --- a/apps/req.c +++ b/apps/req.c @@ -616,9 +616,7 @@ int req_main(int argc, char **argv) if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req))) goto end; - if (!X509_gmtime_adj(X509_get_notBefore(x509ss), 0)) - goto end; - if (!X509_time_adj_ex(X509_get_notAfter(x509ss), days, 0, NULL)) + if (!set_cert_times(x509ss, NULL, NULL, days)) goto end; if (!X509_set_subject_name (x509ss, X509_REQ_get_subject_name(req))) -- cgit v1.2.3