aboutsummaryrefslogtreecommitdiff
path: root/crypto/asn1/a_utctm.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-02-10 00:56:45 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-02-10 00:56:45 +0000
commitccb08f98aea68cbafee75c6602768a85d1e29b7f (patch)
tree765bf1b8e6d1046fc6e35d58d81d54eafb6e300a /crypto/asn1/a_utctm.c
parente306892994a0f189089916d2ea66b3bdc0b2d777 (diff)
downloadopenssl-ccb08f98aea68cbafee75c6602768a85d1e29b7f.zip
openssl-ccb08f98aea68cbafee75c6602768a85d1e29b7f.tar.gz
openssl-ccb08f98aea68cbafee75c6602768a85d1e29b7f.tar.bz2
Fix CRL printing to correctly show when there are no revoked certificates.
Make ca.c correctly initialize the revocation date. Make ASN1_UTCTIME_set_string() and ASN1_GENERALIZEDTIME_set_string() set the string type: so they can initialize ASN1_TIME structures properly.
Diffstat (limited to 'crypto/asn1/a_utctm.c')
-rw-r--r--crypto/asn1/a_utctm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c
index 6ddeaff..7cb6464 100644
--- a/crypto/asn1/a_utctm.c
+++ b/crypto/asn1/a_utctm.c
@@ -179,6 +179,7 @@ int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, char *str)
{
ASN1_STRING_set((ASN1_STRING *)s,
(unsigned char *)str,t.length);
+ s->type = V_ASN1_UTCTIME;
}
return(1);
}