From: Rob Stradling Date: Thu, 22 Jan 2015 12:18:30 +0000 (+0000) Subject: Use inner algorithm when printing certificate. X-Git-Tag: OpenSSL_1_1_0-pre1~1781 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=004efdbb41f731d36bf12d251909aaa08704a756;ds=sidebyside Use inner algorithm when printing certificate. Reviewed-by: Stephen Henson Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte --- diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c index f33932a5d1..0bdc2c2230 100644 --- a/crypto/asn1/t_x509.c +++ b/crypto/asn1/t_x509.c @@ -164,7 +164,7 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, } if (!(cflag & X509_FLAG_NO_SIGNAME)) { - if (X509_signature_print(bp, x->sig_alg, NULL) <= 0) + if (X509_signature_print(bp, ci->signature, NULL) <= 0) goto err; #if 0 if (BIO_printf(bp, "%8sSignature Algorithm: ", "") <= 0)