From: Dr. Stephen Henson Date: Tue, 20 Nov 2012 15:22:15 +0000 (+0000) Subject: fix printout of expiry days if -enddate is used in ca X-Git-Tag: master-post-reformat~1587 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=f7ac0ec89d0daefdea2956c55c17f1246e81c0a6;ds=inline fix printout of expiry days if -enddate is used in ca --- diff --git a/apps/ca.c b/apps/ca.c index 0cb498b9d9..5d488e2fac 100644 --- a/apps/ca.c +++ b/apps/ca.c @@ -2052,7 +2052,13 @@ again2: if (enddate == NULL) X509_time_adj_ex(X509_get_notAfter(ret),days, 0, NULL); - else ASN1_TIME_set_string(X509_get_notAfter(ret),enddate); + else + { + int tdays; + ASN1_TIME_set_string(X509_get_notAfter(ret),enddate); + ASN1_TIME_diff(&tdays, NULL, NULL, X509_get_notAfter(ret)); + days = tdays; + } if (!X509_set_subject_name(ret,subject)) goto err;