summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-09-25 11:24:53 +0000
committerBodo Möller <bodo@openssl.org>1999-09-25 11:24:53 +0000
commitdd73193c83957529a5f658e0300da9ad8b7d274a (patch)
treeba4daa010ecdde724a24d11ccde59de5b8daee95 /apps
parent4ad378ea4329255adae942393413751b33beeaaf (diff)
Honor BUFSIZZ definition in s_server, don't use tiny 32 byte
buffer (which leads to truncation of client cipher list).
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
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"