1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

CONC-447 ERROR 2026 (HY000): SSL connection error: Certificate signature check failed

Enable CRL checking on Windows.
Enable certificate verification testing in client testing.
This commit is contained in:
Vladislav Vaintroub
2019-12-08 18:14:42 +01:00
parent 3cc0e0befb
commit 6484288cd2
4 changed files with 15 additions and 16 deletions

View File

@@ -30,7 +30,7 @@
*/
opt_use_ssl= 1;
/* crl has no effect in yaSSL */
#ifdef HAVE_YASSL
#if defined (HAVE_YASSL) && (!defined (_WIN32) || defined (MYSQL_SERVER))
opt_ssl_crl= NULL;
opt_ssl_crlpath= NULL;
#endif