summaryrefslogtreecommitdiffstats
path: root/ssl/s2_clnt.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-10-24 19:03:22 +0000
committerBodo Möller <bodo@openssl.org>2001-10-24 19:03:22 +0000
commit979689aa5cfa100ccbc1f25064e9398be4b7b05c (patch)
tree363dad35cdaaba2b61eb34898433e4fb0495bcde /ssl/s2_clnt.c
parenta3faebd1041576a59bffe01bbd2c68495870ec5e (diff)
Fix SSL handshake functions and SSL_clear() such that SSL_clear()
never resets s->method to s->ctx->method when called from within one of the SSL handshake functions.
Diffstat (limited to 'ssl/s2_clnt.c')
-rw-r--r--ssl/s2_clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s2_clnt.c b/ssl/s2_clnt.c
index 85b97b61de..8cb7388ef9 100644
--- a/ssl/s2_clnt.c
+++ b/ssl/s2_clnt.c
@@ -118,8 +118,8 @@ int ssl2_connect(SSL *s)
cb=s->ctx->info_callback;
/* init things to blank */
- if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
s->in_handshake++;
+ if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
for (;;)
{