summaryrefslogtreecommitdiff
path: root/client/mysql.cc
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-06-28 15:53:49 +0200
committerVladislav Vaintroub <wlad@mariadb.com>2019-06-30 17:48:19 +0200
commitdb80f047512719311dd6e8ca0dece78094034b40 (patch)
tree65e1dd37155835a3e4561cfdae2f59d5f104870a /client/mysql.cc
parent6dc71d4f1060ac50fb5d48daa7424039c4e8f9df (diff)
downloadmariadb-git-db80f047512719311dd6e8ca0dece78094034b40.tar.gz
Cleanup - do not dllexport statically built plugins
Diffstat (limited to 'client/mysql.cc')
-rw-r--r--client/mysql.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc
index 47ab7644a50..c334e16fa20 100644
--- a/client/mysql.cc
+++ b/client/mysql.cc
@@ -4636,7 +4636,10 @@ static char *get_arg(char *line, get_arg_mode mode)
string, and the "dialog" plugin will free() it.
*/
-MYSQL_PLUGIN_EXPORT
+extern "C"
+#ifdef _MSC_VER
+__declspec(dllexport)
+#endif
char *mysql_authentication_dialog_ask(MYSQL *mysql, int type,
const char *prompt,
char *buf, int buf_len)