summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2015-12-18 16:31:05 +0400
committerSergey Vojtovich <svoj@mariadb.org>2015-12-18 16:31:05 +0400
commit3402f7a85364e26fe85dfff3b5d803a8497042aa (patch)
tree89f293b246bd224dbc7d3474b0cb19f6e783585d /plugin
parent90ea0145856338221803ebb9b446ed2a6e082412 (diff)
downloadmariadb-git-3402f7a85364e26fe85dfff3b5d803a8497042aa.tar.gz
Fixed auth_socket static compilation
Diffstat (limited to 'plugin')
-rw-r--r--plugin/auth_socket/CMakeLists.txt2
-rw-r--r--plugin/auth_socket/auth_socket.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/auth_socket/CMakeLists.txt b/plugin/auth_socket/CMakeLists.txt
index 8137c6b4529..e4a8d1d6efd 100644
--- a/plugin/auth_socket/CMakeLists.txt
+++ b/plugin/auth_socket/CMakeLists.txt
@@ -65,6 +65,6 @@ ENDIF()
ENDIF()
IF(ok)
- MYSQL_ADD_PLUGIN(auth_socket auth_socket.c MODULE_ONLY)
+ MYSQL_ADD_PLUGIN(auth_socket auth_socket.c)
ENDIF()
diff --git a/plugin/auth_socket/auth_socket.c b/plugin/auth_socket/auth_socket.c
index 601b76b6b5c..f04b1d9d2a1 100644
--- a/plugin/auth_socket/auth_socket.c
+++ b/plugin/auth_socket/auth_socket.c
@@ -105,7 +105,7 @@ static struct st_mysql_auth socket_auth_handler=
socket_auth
};
-maria_declare_plugin(socket_auth)
+maria_declare_plugin(auth_socket)
{
MYSQL_AUTHENTICATION_PLUGIN,
&socket_auth_handler,