1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix clang-cl warnings

This commit is contained in:
Vladislav Vaintroub
2019-07-01 00:39:45 +02:00
parent 9c9e0ac73d
commit bd917e0811
8 changed files with 14 additions and 10 deletions

View File

@ -90,6 +90,7 @@ static int deinitialize_plugin(void *unused)
return plugin_deinit();
}
#ifdef PLUGIN_GSSAPI
/* system variable */
static MYSQL_SYSVAR_STR(keytab_path, srv_keytab_path,
PLUGIN_VAR_RQCMDARG|PLUGIN_VAR_READONLY,
@ -97,6 +98,8 @@ static MYSQL_SYSVAR_STR(keytab_path, srv_keytab_path,
NULL,
NULL,
"");
#endif
static MYSQL_SYSVAR_STR(principal_name, srv_principal_name,
PLUGIN_VAR_RQCMDARG|PLUGIN_VAR_READONLY,
"GSSAPI target name - service principal name for Kerberos authentication.",