From: Bodo Möller Date: Tue, 5 Sep 2000 12:43:39 +0000 (+0000) Subject: Increase print buffer (10K instead of just 2K). X-Git-Tag: OpenSSL-engine-0_9_6-beta1~12^2~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=29dc25e88ab5c3ba984ef9661d4d13a3d3973a5c;p=oweals%2Fopenssl.git Increase print buffer (10K instead of just 2K). --- 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