projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ff71d6
)
Add padding spaces before printing algo.
author
Yutian Li
<hotpxless@gmail.com>
Tue, 30 Aug 2016 03:17:28 +0000
(11:17 +0800)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 16 Nov 2017 00:00:06 +0000
(
01:00
+0100)
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)
crypto/x509/t_x509.c
patch
|
blob
|
history
diff --git
a/crypto/x509/t_x509.c
b/crypto/x509/t_x509.c
index ba6f9196d2323985692468d90cef801c7e72c060..2ad7e639005b8f540fb16e6605c94e1acb664568 100644
(file)
--- 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;
}