[openssl-commits] [openssl] master update
Dr. Stephen Henson
steve at openssl.org
Thu Jan 22 12:41:25 UTC 2015
The branch master has been updated
via 004efdbb41f731d36bf12d251909aaa08704a756 (commit)
from 732c5a6b928f10de4d6ca0394f49e9938a47a93b (commit)
- Log -----------------------------------------------------------------
commit 004efdbb41f731d36bf12d251909aaa08704a756
Author: Rob Stradling <rob.stradling at comodo.com>
Date: Thu Jan 22 12:18:30 2015 +0000
Use inner algorithm when printing certificate.
Reviewed-by: Stephen Henson <steve at openssl.org>
Reviewed-by: Tim Hudson <tjh at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
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 f33932a..0bdc2c2 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)
More information about the openssl-commits
mailing list