From: Richard Levitte Date: Sat, 27 Sep 2003 19:32:09 +0000 (+0000) Subject: Have ssl3_ssl3_send_client_verify() change the state to SSL3_ST_SW_CERT_VRFY_B. X-Git-Tag: OpenSSL_0_9_7c~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=88fd7424f6443b0a8d04975e4686a7326c0ed407;p=oweals%2Fopenssl.git 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 fae8eadada..eb7daebfdf 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -1769,6 +1769,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; }