From 29dc25e88ab5c3ba984ef9661d4d13a3d3973a5c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bodo=20M=C3=B6ller?= <bodo@openssl.org>
Date: Tue, 5 Sep 2000 12:43:39 +0000
Subject: [PATCH] Increase print buffer (10K instead of just 2K).

---
 crypto/bio/b_print.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c
index c421934def..a00f0925d2 100644
--- a/crypto/bio/b_print.c
+++ b/crypto/bio/b_print.c
@@ -827,7 +827,7 @@ int BIO_vprintf (BIO *bio, const char *format, va_list args)
 #ifdef USE_ALLOCATING_PRINT
 	char *hugebuf;
 #else
-	MS_STATIC char hugebuf[1024*2];
+	MS_STATIC char hugebuf[1024*10];
 #endif
 
 #ifndef USE_ALLOCATING_PRINT
-- 
GitLab