summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/asn1/t_x509a.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/t_x509a.c b/src/lib/libcrypto/asn1/t_x509a.c
index fd68211b84..173465b295 100644
--- a/src/lib/libcrypto/asn1/t_x509a.c
+++ b/src/lib/libcrypto/asn1/t_x509a.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t_x509a.c,v 1.8 2014/07/11 08:44:47 jsing Exp $ */ 1/* $OpenBSD: t_x509a.c,v 1.8.18.1 2021/08/20 19:54:16 benno Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -105,8 +105,8 @@ X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent)
105 } else 105 } else
106 BIO_printf(out, "%*sNo Rejected Uses.\n", indent, ""); 106 BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
107 if (aux->alias) 107 if (aux->alias)
108 BIO_printf(out, "%*sAlias: %s\n", indent, "", 108 BIO_printf(out, "%*sAlias: %.*s\n", indent, "",
109 aux->alias->data); 109 aux->alias->length, aux->alias->data);
110 if (aux->keyid) { 110 if (aux->keyid) {
111 BIO_printf(out, "%*sKey Id: ", indent, ""); 111 BIO_printf(out, "%*sKey Id: ", indent, "");
112 for (i = 0; i < aux->keyid->length; i++) 112 for (i = 0; i < aux->keyid->length; i++)