[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Wed Nov 15 22:12:24 UTC 2017
The branch master has been updated
via 26a374a271dabd49f3fa7f43a74e05d34aca010e (commit)
from 4483fbae10a9277812cc8a587ef58a5a512fe7c9 (commit)
- Log -----------------------------------------------------------------
commit 26a374a271dabd49f3fa7f43a74e05d34aca010e
Author: Yutian Li <hotpxless at gmail.com>
Date: Tue Aug 30 11:17:28 2016 +0800
Add padding spaces before printing algo.
CLA: trivial
Reviewed-by: Paul Dale <paul.dale at oracle.com>
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Rich Salz <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1513)
-----------------------------------------------------------------------
Summary of changes:
crypto/x509/t_x509.c | 3 +++
1 file changed, 3 insertions(+)
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;
}
More information about the openssl-commits
mailing list