diff options
author | unknown <msvensson@pilot.blaudden> | 2007-03-05 10:03:42 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-03-05 10:03:42 +0100 |
commit | 3880c80fc60b28ec3898118eba0cbe0fdc2eeee3 (patch) | |
tree | 136e9ed8fb8afbf1de870f1389c9a16a9130cceb /sql/set_var.cc | |
parent | b9c36948f44b39cb2a9d4c80ea3bbb321ec1e045 (diff) | |
download | mariadb-git-3880c80fc60b28ec3898118eba0cbe0fdc2eeee3.tar.gz |
Add "have_ssl" as synonym for "have_openssl"
mysql-test/t/openssl_1.test:
Add "have_ssl" as synonym for "have_openssl"
Correct comment
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}, |