summaryrefslogtreecommitdiff
path: root/client/mysqlcheck.c
diff options
context:
space:
mode:
authorGeorg Richter <georg@mariadb.com>2016-10-13 12:07:14 +0200
committerGeorg Richter <georg@mariadb.com>2016-10-13 12:07:14 +0200
commit351e6c8ede92ce2c22b9e7dfe07f992d09661478 (patch)
tree99f95ff39c350cc68bdc7406a26793f6e75fcf0c /client/mysqlcheck.c
parent9a0fdab9ffab032aaf70ebf1ed255480b850a462 (diff)
downloadmariadb-git-10.2-good_bye_yassl.tar.gz
- Replaced yassl by gnutls10.2-good_bye_yassl
TLS functionality is now handled in ma_tls_vio.c - added new parameter ssl_passphrase for passphrase protected keys
Diffstat (limited to 'client/mysqlcheck.c')
-rw-r--r--client/mysqlcheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlcheck.c b/client/mysqlcheck.c
index c1ea002515b..f90710fe2d9 100644
--- a/client/mysqlcheck.c
+++ b/client/mysqlcheck.c
@@ -1082,7 +1082,7 @@ static int dbConnect(char *host, char *user, char *passwd)
mysql_init(&mysql_connection);
if (opt_compress)
mysql_options(&mysql_connection, MYSQL_OPT_COMPRESS, NullS);
-#ifdef HAVE_OPENSSL
+#ifdef HAVE_TLS
if (opt_use_ssl)
{
mysql_ssl_set(&mysql_connection, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,