From: Bodo Möller Date: Sat, 25 Sep 1999 11:24:53 +0000 (+0000) Subject: Honor BUFSIZZ definition in s_server, don't use tiny 32 byte X-Git-Tag: OpenSSL_0_9_5beta1~502 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd73193c83957529a5f658e0300da9ad8b7d274a;p=openssl Honor BUFSIZZ definition in s_server, don't use tiny 32 byte buffer (which leads to truncation of client cipher list). --- diff --git a/apps/s_server.c b/apps/s_server.c index e54593d551..da0f2ff116 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -153,7 +153,7 @@ static DH *get_dh512(void) #undef BUFSIZZ #define BUFSIZZ 16*1024 -static int bufsize=32; +static int bufsize=BUFSIZZ; static int accept_socket= -1; #define TEST_CERT "server.pem"