mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
remove MYF flags from plugin
This commit is contained in:
parent
ea9c407e0b
commit
952f394f8e
1 changed files with 2 additions and 2 deletions
|
@ -42,11 +42,11 @@ static void log_error(SECURITY_STATUS err, const char *msg)
|
|||
{
|
||||
char buf[1024];
|
||||
sspi_errmsg(err, buf, sizeof(buf));
|
||||
my_printf_error(ER_UNKNOWN_ERROR, "SSPI server error 0x%x - %s - %s", MYF(0), msg, buf);
|
||||
my_printf_error(ER_UNKNOWN_ERROR, "SSPI server error 0x%x - %s - %s", 0, msg, buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
my_printf_error(ER_UNKNOWN_ERROR, "SSPI server error %s", MYF(0), msg);
|
||||
my_printf_error(ER_UNKNOWN_ERROR, "SSPI server error %s", 0, msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue