mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Merge branch '10.3' into 10.4
This commit is contained in:
commit
c07325f932
3893 changed files with 11761 additions and 6455 deletions
|
|
@ -36,6 +36,10 @@ static MYSQL_SYSVAR_BOOL(use_cleartext_plugin, use_cleartext_plugin,
|
|||
"supports simple PAM policies that don't require anything besides "
|
||||
"a password", NULL, NULL, 0);
|
||||
|
||||
static MYSQL_SYSVAR_BOOL(winbind_workaround, winbind_hack, PLUGIN_VAR_OPCMDARG,
|
||||
"Compare usernames case insensitively to work around pam_winbind "
|
||||
"unconditional username lowercasing", NULL, NULL, 0);
|
||||
|
||||
#ifndef DBUG_OFF
|
||||
static MYSQL_SYSVAR_BOOL(debug, pam_debug, PLUGIN_VAR_OPCMDARG,
|
||||
"Log all PAM activity", NULL, NULL, 0);
|
||||
|
|
@ -44,6 +48,7 @@ static MYSQL_SYSVAR_BOOL(debug, pam_debug, PLUGIN_VAR_OPCMDARG,
|
|||
|
||||
static struct st_mysql_sys_var* vars[] = {
|
||||
MYSQL_SYSVAR(use_cleartext_plugin),
|
||||
MYSQL_SYSVAR(winbind_workaround),
|
||||
#ifndef DBUG_OFF
|
||||
MYSQL_SYSVAR(debug),
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue