projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ad378e
)
Honor BUFSIZZ definition in s_server, don't use tiny 32 byte
author
Bodo Möller
<bodo@openssl.org>
Sat, 25 Sep 1999 11:24:53 +0000
(11:24 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sat, 25 Sep 1999 11:24:53 +0000
(11:24 +0000)
buffer (which leads to truncation of client cipher list).
apps/s_server.c
patch
|
blob
|
history
diff --git
a/apps/s_server.c
b/apps/s_server.c
index e54593d5514b17f89002715aec6ef03d22a77278..da0f2ff1169ece4c941e4288f08da8fe319f80d0 100644
(file)
--- 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"