summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-12-08 18:14:42 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2019-12-08 18:26:16 +0100
commit6484288cd260cc9ad34d93a35502e66c034f01a7 (patch)
treed7f6cc97860d227135a9dafed6b896d4bcc08560 /include
parent3cc0e0befb3d6012a7ed9649a2220bf6cc6c614f (diff)
downloadmariadb-git-6484288cd260cc9ad34d93a35502e66c034f01a7.tar.gz
CONC-447 ERROR 2026 (HY000): SSL connection error: Certificate signature check failed
Enable CRL checking on Windows. Enable certificate verification testing in client testing.
Diffstat (limited to 'include')
-rw-r--r--include/sslopt-case.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sslopt-case.h b/include/sslopt-case.h
index fe53088e89b..fe83051c275 100644
--- a/include/sslopt-case.h
+++ b/include/sslopt-case.h
@@ -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