diff options
author | walrus@mysql.com <> | 2002-08-08 21:27:17 +0200 |
---|---|---|
committer | walrus@mysql.com <> | 2002-08-08 21:27:17 +0200 |
commit | d52b1cf5f8b0629310f98648188f50bab982ab10 (patch) | |
tree | cd072b545fb9f331f159bbd985fc367be2ea8c9c /include/sslopt-case.h | |
parent | 23a1a5db841c67a945945c73814256dbff0ec7d3 (diff) | |
download | mariadb-git-d52b1cf5f8b0629310f98648188f50bab982ab10.tar.gz |
sslopt-case.h changed optarg to argument, decomment ssl-key option
Diffstat (limited to 'include/sslopt-case.h')
-rw-r--r-- | include/sslopt-case.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/sslopt-case.h b/include/sslopt-case.h index 331c9a307f1..bc6a46fc776 100644 --- a/include/sslopt-case.h +++ b/include/sslopt-case.h @@ -22,25 +22,27 @@ opt_use_ssl = 1; /* true */ /* QQ to be removed??? my_free(opt_ssl_key, MYF(MY_ALLOW_ZERO_PTR)); */ /* QQ to be removed??? opt_ssl_key = my_strdup(optarg, MYF(0)); */ + my_free(opt_ssl_key, MYF(MY_ALLOW_ZERO_PTR)); + opt_ssl_key = my_strdup(argument, MYF(0)); break; case OPT_SSL_CERT: opt_use_ssl = 1; /* true */ my_free(opt_ssl_cert, MYF(MY_ALLOW_ZERO_PTR)); - opt_ssl_cert = my_strdup(optarg, MYF(0)); + opt_ssl_cert = my_strdup(argument, MYF(0)); break; case OPT_SSL_CA: opt_use_ssl = 1; /* true */ my_free(opt_ssl_ca, MYF(MY_ALLOW_ZERO_PTR)); - opt_ssl_ca = my_strdup(optarg, MYF(0)); + opt_ssl_ca = my_strdup(argument, MYF(0)); break; case OPT_SSL_CAPATH: opt_use_ssl = 1; /* true */ my_free(opt_ssl_capath, MYF(MY_ALLOW_ZERO_PTR)); - opt_ssl_capath = my_strdup(optarg, MYF(0)); + opt_ssl_capath = my_strdup(argument, MYF(0)); break; case OPT_SSL_CIPHER: opt_use_ssl = 1; /* true */ my_free(opt_ssl_cipher, MYF(MY_ALLOW_ZERO_PTR)); - opt_ssl_cipher = my_strdup(optarg, MYF(0)); + opt_ssl_cipher = my_strdup(argument, MYF(0)); break; #endif |