From: Richard Levitte Date: Sat, 27 Sep 2003 19:32:06 +0000 (+0000) Subject: Have ssl3_ssl3_send_client_verify() change the state to SSL3_ST_SW_CERT_VRFY_B. X-Git-Tag: BEN_FIPS_TEST_4^2~11^2~102 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=ba9f80c5d515c9e087b942f578954925290f4fb9;ds=inline Have ssl3_ssl3_send_client_verify() change the state to SSL3_ST_SW_CERT_VRFY_B. PR: 679 --- diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index 7eff4f1d5e..b27a1deaa7 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -2161,6 +2161,7 @@ static int ssl3_send_client_verify(SSL *s) *(d++)=SSL3_MT_CERTIFICATE_VERIFY; l2n3(n,d); + s->state=SSL3_ST_CW_CERT_VRFY_B; s->init_num=(int)n+4; s->init_off=0; }