From: Dr. Stephen Henson Date: Mon, 13 Jul 2009 11:40:14 +0000 (+0000) Subject: Use new time routines to avoid possible overflow. X-Git-Tag: OpenSSL-fips-2_0-rc1~1599 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6053ef80e56451fe4f30ec9858dc0db042de8baa;p=oweals%2Fopenssl.git Use new time routines to avoid possible overflow. --- diff --git a/apps/x509.c b/apps/x509.c index 5e81ee8c3f..af534f63d1 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -626,7 +626,7 @@ bad: if (!X509_set_subject_name(x,req->req_info->subject)) goto end; X509_gmtime_adj(X509_get_notBefore(x),0); - X509_gmtime_adj(X509_get_notAfter(x),(long)60*60*24*days); + X509_gmtime_adj_ex(X509_get_notAfter(x),days, 0, NULL); pkey = X509_REQ_get_pubkey(req); X509_set_pubkey(x,pkey);