mirror of
https://github.com/MariaDB/server.git
synced 2025-04-18 13:15:32 +02:00
MDEV-25511: Command line tools don't support CRL parameters
Enable CRL support for GnuTLS (which was implemented by CONC-433).
This commit is contained in:
parent
904edfd24b
commit
be8e51c459
1 changed files with 7 additions and 2 deletions
|
@ -29,10 +29,15 @@
|
|||
One can disable SSL later by using --skip-ssl or --ssl=0
|
||||
*/
|
||||
opt_use_ssl= 1;
|
||||
#if defined (HAVE_WOLFSSL) && (!defined (_WIN32) || defined (MYSQL_SERVER))
|
||||
/* CRL does not work with WolfSSL */
|
||||
#if defined (HAVE_WOLFSSL)
|
||||
#if defined(MYSQL_SERVER)
|
||||
/* CRL does not work with WolfSSL (server) */
|
||||
opt_ssl_crl= NULL;
|
||||
#endif
|
||||
#if !defined(_WIN32) || !defined(LIBMARIADB)
|
||||
/* CRL_PATH does not work with WolfSSL (server) and GnuTLS (client) */
|
||||
opt_ssl_crlpath= NULL;
|
||||
#endif
|
||||
#endif
|
||||
break;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue