From: Bodo Möller Date: Thu, 18 Jul 2002 11:19:05 +0000 (+0000) Subject: Fix bug introduced with revision 1.95 when this filed was modified to X-Git-Tag: OpenSSL_0_9_7-beta3~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=13793a0ddf06403cd902cf744bbaa8bc0183ea9d;p=oweals%2Fopenssl.git Fix bug introduced with revision 1.95 when this filed was modified to use the new X509_CRL_set_issuer_name() function: The CRL issuer should be X509_get_subject_name(x509), not X509_get_issuer_name(x509). Submitted by: Juergen Lesny typo --- diff --git a/apps/ca.c b/apps/ca.c index 11fad5d144..322956de57 100644 --- a/apps/ca.c +++ b/apps/ca.c @@ -1454,13 +1454,13 @@ bad: } if ((crldays == 0) && (crlhours == 0)) { - BIO_printf(bio_err,"cannot lookup how long until the next CRL is issuer\n"); + BIO_printf(bio_err,"cannot lookup how long until the next CRL is issued\n"); goto err; } if (verbose) BIO_printf(bio_err,"making CRL\n"); if ((crl=X509_CRL_new()) == NULL) goto err; - if (!X509_CRL_set_issuer_name(crl, X509_get_issuer_name(x509))) goto err; + if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509))) goto err; tmptm = ASN1_TIME_new(); if (!tmptm) goto err;