提交 8051996a 编写于 作者: B Bodo Möller

Annotate a bug.

Submitted by:
Reviewed by:
PR:
上级 5b1b0446
......@@ -1652,7 +1652,19 @@ static int ssl3_get_client_certificate(SSL *s)
if (s->session->peer != NULL)
X509_free(s->session->peer);
s->session->peer=sk_X509_shift(sk);
/* FIXME: s->session->cert could be a SSL_CTX's struct cert_st!
* struct cert_st is used for too many purposes. It makes
* sense to use the same structure in both SSL_CTX and SSL,
* but then don't put any per-connection data in it. */
#if 0 /* This could become a workaround, but it would still be utterly ugly */
if (!ssl_cert_instantiate(&s->cert, s->ctx->default_cert))
{
handle the error;
}
#endif
s->session->cert->cert_chain=sk;
sk=NULL;
ret=1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册