diff options
author | Michael Widenius <monty@askmonty.org> | 2012-08-14 17:23:34 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2012-08-14 17:23:34 +0300 |
commit | 60589aeee03949033c66da5c1eae70d4342179fc (patch) | |
tree | 1cd399dbed17c5c7b4ed16eb7b872dc979af1c93 /include/sslopt-case.h | |
parent | b39e6e3d093b45f792959ef06fea1c175263ae1a (diff) | |
download | mariadb-git-60589aeee03949033c66da5c1eae70d4342179fc.tar.gz |
Next part of merge. See TODO for details
Diffstat (limited to 'include/sslopt-case.h')
-rw-r--r-- | include/sslopt-case.h | 7 |
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 */ |