From f3adfcb523b0d17f8121007cff5c94eb1fa2b909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Tue, 2 Apr 2019 11:59:55 +0300 Subject: [PATCH] After-merge fix: Initialize all fields --- plugin/auth_gssapi/server_plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)