ssl_calls: fix to read certificate chains

ulab-next-nosound
speidy 10 years ago
parent d9d746ce5c
commit 86005c5bcc

@ -649,17 +649,17 @@ ssl_tls_accept(struct ssl_tls *self)
return 1; return 1;
} }
self->ssl = SSL_new(self->ctx); if (SSL_CTX_use_certificate_chain_file(self->ctx, self->cert) <= 0)
if (self->ssl == NULL)
{ {
g_writeln("ssl_tls_accept: SSL_new failed"); g_writeln("ssl_tls_accept: SSL_CTX_use_certificate_chain_file failed");
return 1; return 1;
} }
if (SSL_use_certificate_file(self->ssl, self->cert, SSL_FILETYPE_PEM) <= 0) self->ssl = SSL_new(self->ctx);
if (self->ssl == NULL)
{ {
g_writeln("ssl_tls_accept: SSL_use_certificate_file failed"); g_writeln("ssl_tls_accept: SSL_new failed");
return 1; return 1;
} }

Loading…
Cancel
Save