summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/src/apps/s_client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/s_client.c b/src/lib/libssl/src/apps/s_client.c
index 66d54989a2..70e7254a91 100644
--- a/src/lib/libssl/src/apps/s_client.c
+++ b/src/lib/libssl/src/apps/s_client.c
@@ -297,7 +297,6 @@ int MAIN(int argc, char **argv)
297 char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL; 297 char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL;
298 int cbuf_len,cbuf_off; 298 int cbuf_len,cbuf_off;
299 int sbuf_len,sbuf_off; 299 int sbuf_len,sbuf_off;
300 int mbuf_len;
301 fd_set readfds,writefds; 300 fd_set readfds,writefds;
302 char *port=PORT_STR; 301 char *port=PORT_STR;
303 int full_log=1; 302 int full_log=1;
@@ -322,6 +321,7 @@ int MAIN(int argc, char **argv)
322 int sock_type=SOCK_STREAM; 321 int sock_type=SOCK_STREAM;
323 BIO *sbio; 322 BIO *sbio;
324 char *inrand=NULL; 323 char *inrand=NULL;
324 int mbuf_len=0;
325#ifndef OPENSSL_NO_ENGINE 325#ifndef OPENSSL_NO_ENGINE
326 char *engine_id=NULL; 326 char *engine_id=NULL;
327 char *ssl_client_engine_id=NULL; 327 char *ssl_client_engine_id=NULL;
@@ -925,7 +925,6 @@ SSL_set_tlsext_status_ids(con, ids);
925 cbuf_off=0; 925 cbuf_off=0;
926 sbuf_len=0; 926 sbuf_len=0;
927 sbuf_off=0; 927 sbuf_off=0;
928 mbuf_len=0;
929 928
930 /* This is an ugly hack that does a lot of assumptions */ 929 /* This is an ugly hack that does a lot of assumptions */
931 /* We do have to handle multi-line responses which may come 930 /* We do have to handle multi-line responses which may come