diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-01-11 16:53:14 +0200 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-01-11 16:53:14 +0200 |
commit | 91a2afcbcba8af28d2f10f80830b543654151556 (patch) | |
tree | 310ef466661589e1dad4a9d686641c414648ff68 /plugin | |
parent | 64c82a68ccb2a2d300820b7f3bde9317f41d9902 (diff) | |
download | mariadb-git-91a2afcbcba8af28d2f10f80830b543654151556.tar.gz |
Bug #59017: Auth plugin socket_peercred fails to load in 5.5.8
Due to how the server checks for option names the name of the
plugin "socket_peercred" collides with the existing server side
option "socket".
Renamed the plugin from "socket_peercred" to "auth_socket" to
avoid the name clash.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/auth/auth_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth/auth_socket.c b/plugin/auth/auth_socket.c index dbd440025d7..b8ae00b6949 100644 --- a/plugin/auth/auth_socket.c +++ b/plugin/auth/auth_socket.c @@ -79,7 +79,7 @@ mysql_declare_plugin(socket_auth) { MYSQL_AUTHENTICATION_PLUGIN, &socket_auth_handler, - "socket_peercred", + "auth_socket", "Sergei Golubchik", "Unix Socket based authentication", PLUGIN_LICENSE_GPL, |