Commit be8e51c4 authored by Georg Richter's avatar Georg Richter

MDEV-25511: Command line tools don't support CRL parameters

Enable CRL support for GnuTLS (which was implemented by CONC-433).
parent 904edfd2
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment