mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
auth_gssapi : Fix string formatting in my_printf_error()
This commit is contained in:
parent
952f394f8e
commit
5a5bc21a65
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ 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", 0, msg, buf);
|
||||
my_printf_error(ER_UNKNOWN_ERROR, "SSPI server error 0x%x - %s - %s", 0, err, msg, buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue