summaryrefslogtreecommitdiff
path: root/include/sslopt-case.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sslopt-case.h')
-rw-r--r--include/sslopt-case.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sslopt-case.h b/include/sslopt-case.h
index 2da5ff317e1..4a8c65948cb 100644
--- a/include/sslopt-case.h
+++ b/include/sslopt-case.h
@@ -22,11 +22,18 @@
case OPT_SSL_CA:
case OPT_SSL_CAPATH:
case OPT_SSL_CIPHER:
+ case OPT_SSL_CRL:
+ case OPT_SSL_CRLPATH:
/*
Enable use of SSL if we are using any ssl option
One can disable SSL later by using --skip-ssl or --ssl=0
*/
opt_use_ssl= 1;
+ /* crl has no effect in yaSSL */
+#ifdef HAVE_YASSL
+ opt_ssl_crl= NULL;
+ opt_ssl_crlpath= NULL;
+#endif
break;
#endif
#endif /* SSLOPT_CASE_INCLUDED */