mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
compatibility fix for yassl
This commit is contained in:
parent
eeec92c50b
commit
8895218eb3
2 changed files with 5 additions and 0 deletions
|
|
@ -341,6 +341,7 @@ long SSL_CTX_sess_set_cache_size(SSL_CTX*, long);
|
|||
long SSL_CTX_set_tmp_dh(SSL_CTX*, DH*);
|
||||
|
||||
void OpenSSL_add_all_algorithms(void);
|
||||
void SSL_library_init();
|
||||
void SSLeay_add_ssl_algorithms(void);
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -648,6 +648,10 @@ void OpenSSL_add_all_algorithms() // compatibility only
|
|||
{}
|
||||
|
||||
|
||||
void SSL_library_init() // compatibility only
|
||||
{}
|
||||
|
||||
|
||||
DH* DH_new(void)
|
||||
{
|
||||
DH* dh = new (ys) DH;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue