diff options
author | msvensson@pilot.blaudden <> | 2007-03-05 10:03:42 +0100 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-03-05 10:03:42 +0100 |
commit | 9a2eea4019cdc318efd3391ca948986720cadfa8 (patch) | |
tree | 136e9ed8fb8afbf1de870f1389c9a16a9130cceb /sql/set_var.cc | |
parent | ab61d07a30b73e3446b6eab9536ba464a0d55f74 (diff) | |
download | mariadb-git-9a2eea4019cdc318efd3391ca948986720cadfa8.tar.gz |
Add "have_ssl" as synonym for "have_openssl"
Diffstat (limited to 'sql/set_var.cc')
-rw-r--r-- | sql/set_var.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/set_var.cc b/sql/set_var.cc index b3a9305132a..67a04775110 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -874,7 +874,9 @@ struct show_var_st init_vars[]= { {"have_isam", (char*) &have_isam, SHOW_HAVE}, {"have_merge_engine", (char*) &have_merge_db, SHOW_HAVE}, {"have_ndbcluster", (char*) &have_ndbcluster, SHOW_HAVE}, - {"have_openssl", (char*) &have_openssl, SHOW_HAVE}, + /* have_openssl is just and alias for have_ssl */ + {"have_openssl", (char*) &have_ssl, SHOW_HAVE}, + {"have_ssl", (char*) &have_ssl, SHOW_HAVE}, {"have_query_cache", (char*) &have_query_cache, SHOW_HAVE}, {"have_raid", (char*) &have_raid, SHOW_HAVE}, {"have_rtree_keys", (char*) &have_rtree_keys, SHOW_HAVE}, |