diff options
Diffstat (limited to 'apps/x509.c')
| -rw-r--r-- | apps/x509.c | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/apps/x509.c b/apps/x509.c index 864a60dda2e7..7c215bced001 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -1226,12 +1226,7 @@ static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,      if (X509_gmtime_adj(X509_get_notBefore(x), 0) == NULL)          goto err; -    /* Lets just make it 12:00am GMT, Jan 1 1970 */ -    /* memcpy(x->cert_info->validity->notBefore,"700101120000Z",13); */ -    /* 28 days to be certified */ - -    if (X509_gmtime_adj(X509_get_notAfter(x), (long)60 * 60 * 24 * days) == -        NULL) +    if (X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL) == NULL)          goto err;      if (!X509_set_pubkey(x, pkey)) | 
