summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-09-05 12:43:39 +0000
committerBodo Möller <bodo@openssl.org>2000-09-05 12:43:39 +0000
commit29dc25e88ab5c3ba984ef9661d4d13a3d3973a5c (patch)
tree4f2c4be0b920998cf8d1a6b8265e1ec363bdce45 /crypto/bio
parent0572abbf53a26292d974a6ac5cedee9b875c82da (diff)
Increase print buffer (10K instead of just 2K).
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/b_print.c2
1 files changed, 1 insertions, 1 deletions
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