summaryrefslogtreecommitdiffstats
path: root/apps/pkcs7.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-01-20 00:14:40 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-01-20 00:14:40 +0000
commit9b5cc156f3e42488bc975bbe3055bf004f6dae4a (patch)
tree40ebb604bed92e36a9b2e2af076647cca96d6514 /apps/pkcs7.c
parent6f93539970fe8c07f7f68f7b2370f79abf78dcbb (diff)
Continued patches so certificates and CRLs now can support and use
GeneralizedTime.
Diffstat (limited to 'apps/pkcs7.c')
-rw-r--r--apps/pkcs7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/pkcs7.c b/apps/pkcs7.c
index 4105dbd9ef..06640bf0f2 100644
--- a/apps/pkcs7.c
+++ b/apps/pkcs7.c
@@ -277,9 +277,9 @@ bad:
BIO_puts(out,buf);
BIO_puts(out,"\nlast update=");
- ASN1_UTCTIME_print(out,crl->crl->lastUpdate);
+ ASN1_TIME_print(out,crl->crl->lastUpdate);
BIO_puts(out,"\nnext update=");
- ASN1_UTCTIME_print(out,crl->crl->nextUpdate);
+ ASN1_TIME_print(out,crl->crl->nextUpdate);
BIO_puts(out,"\n");
PEM_write_bio_X509_CRL(out,crl);