Skip to content
代码片段 群组 项目
提交 e2a39cc0 编辑于 作者: Paul Bakker's avatar Paul Bakker
浏览文件

- Do not bail out if no client certificate specified. Try to negotiate...

 -  Do not bail out if no client certificate specified. Try to negotiate anonymous connection (Fixes ticket #12)
上级 9e7606fc
No related branches found
No related tags found
无相关合并请求
......@@ -16,9 +16,13 @@ Bugfixes
* Corrected parsing of UTCTime dates before 1990 and
after 1950
* Support more exotic OID's when parsing certificates
(found by Mads Kiilerich)
* Support more exotic name representations when parsing
certificates
certificates (found by Mads Kiilerich)
* Replaced the expired test certificates
* Do not bail out if no client certificate specified. Try
to negotiate anonymous connection (Fixes ticket #12,
found by Boris Krasnovskiy)
= Version 0.99-pre1 released on 2011-01-30
Features
......
......@@ -630,7 +630,7 @@ static int ssl_write_certificate_verify( ssl_context *ssl )
SSL_DEBUG_MSG( 2, ( "=> write certificate verify" ) );
if( ssl->client_auth == 0 )
if( ssl->client_auth == 0 || ssl->own_cert == NULL )
{
SSL_DEBUG_MSG( 2, ( "<= skip write certificate verify" ) );
ssl->state++;
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册