diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-04-02 11:59:55 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-04-02 11:59:55 +0300 |
commit | f3adfcb523b0d17f8121007cff5c94eb1fa2b909 (patch) | |
tree | bee68992495eeb8c5a6077695356c66610bddcc0 /plugin | |
parent | 5c3ff5cb93f8363820d506cdad3daafbc944f03b (diff) | |
download | mariadb-git-f3adfcb523b0d17f8121007cff5c94eb1fa2b909.tar.gz |
After-merge fix: Initialize all fields
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/auth_gssapi/server_plugin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth_gssapi/server_plugin.cc b/plugin/auth_gssapi/server_plugin.cc index 550ae775e0f..bce6a812d12 100644 --- a/plugin/auth_gssapi/server_plugin.cc +++ b/plugin/auth_gssapi/server_plugin.cc @@ -139,7 +139,7 @@ static struct st_mysql_sys_var *system_variables[]= { static struct st_mysql_auth server_handler= { MYSQL_AUTHENTICATION_INTERFACE_VERSION, "auth_gssapi_client", - gssapi_auth + gssapi_auth, NULL, NULL }; maria_declare_plugin(gssapi_server) |