Use new time routines to avoid possible overflow.

This commit is contained in:
Dr. Stephen Henson 2009-07-13 11:40:14 +00:00
parent 55a4a77a52
commit 6053ef80e5

View file

@ -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);