Use inner algorithm when printing certificate.
authorRob Stradling <rob.stradling@comodo.com>
Thu, 22 Jan 2015 12:18:30 +0000 (12:18 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 22 Jan 2015 12:40:42 +0000 (12:40 +0000)
Reviewed-by: Stephen Henson <steve@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/asn1/t_x509.c

index f33932a5d157239fb62a96de9dfc85f696d9b96c..0bdc2c22304d90dcb230b5fe8344e2f2d8a3c812 100644 (file)
@@ -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)