aboutsummaryrefslogtreecommitdiff
path: root/crypto/x509/t_x509.c
diff options
context:
space:
mode:
authorYutian Li <hotpxless@gmail.com>2016-08-30 11:17:28 +0800
committerRichard Levitte <levitte@openssl.org>2017-11-16 01:00:06 +0100
commite6cccb5f0523f5a61f5d963ca1708d02e3e83ccc (patch)
tree594a30f547cd8d48b1d2300268908837787fd4b4 /crypto/x509/t_x509.c
parent4ff71d6740adde74acfa7d017fc2257be831caf3 (diff)
downloadopenssl-e6cccb5f0523f5a61f5d963ca1708d02e3e83ccc.zip
openssl-e6cccb5f0523f5a61f5d963ca1708d02e3e83ccc.tar.gz
openssl-e6cccb5f0523f5a61f5d963ca1708d02e3e83ccc.tar.bz2
Add padding spaces before printing algo.
CLA: trivial Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Rich Salz <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1513)
Diffstat (limited to 'crypto/x509/t_x509.c')
-rw-r--r--crypto/x509/t_x509.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/x509/t_x509.c b/crypto/x509/t_x509.c
index ba6f919..2ad7e63 100644
--- a/crypto/x509/t_x509.c
+++ b/crypto/x509/t_x509.c
@@ -119,6 +119,9 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,
if (!(cflag & X509_FLAG_NO_SIGNAME)) {
const X509_ALGOR *tsig_alg = X509_get0_tbs_sigalg(x);
+
+ if (BIO_puts(bp, " ") <= 0)
+ goto err;
if (X509_signature_print(bp, tsig_alg, NULL) <= 0)
goto err;
}