From 73f89820175136769d088a3732000d24c4ac2164 Mon Sep 17 00:00:00 2001 From: Rob Stradling Date: Thu, 22 Jan 2015 12:18:30 +0000 Subject: [PATCH] Use inner algorithm when printing certificate. Reviewed-by: Stephen Henson Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte (cherry picked from commit 004efdbb41f731d36bf12d251909aaa08704a756) --- crypto/asn1/t_x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c index 07e6397e85..4e7c45dd5d 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) -- 2.25.1