From be63fc1223579e7eb4ff747bfbd4b4fd3b0b01ea Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 16 Nov 2017 01:10:44 +0100 Subject: [PATCH] Add padding spaces before printing signature algorithm for CRLs output Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4746) --- crypto/x509/t_crl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/x509/t_crl.c b/crypto/x509/t_crl.c index e6756696a8..8e262912ff 100644 --- a/crypto/x509/t_crl.c +++ b/crypto/x509/t_crl.c @@ -53,6 +53,7 @@ int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag) else BIO_printf(out, "%8sVersion unknown (%ld)\n", "", l); X509_CRL_get0_signature(x, &sig, &sig_alg); + BIO_puts(out, " "); X509_signature_print(out, sig_alg, NULL); BIO_printf(out, "%8sIssuer: ", ""); X509_NAME_print_ex(out, X509_CRL_get_issuer(x), 0, nmflag); -- 2.34.1