Commit 952f394f authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

remove MYF flags from plugin

parent ea9c407e
...@@ -42,11 +42,11 @@ static void log_error(SECURITY_STATUS err, const char *msg) ...@@ -42,11 +42,11 @@ static void log_error(SECURITY_STATUS err, const char *msg)
{ {
char buf[1024]; char buf[1024];
sspi_errmsg(err, buf, sizeof(buf)); 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 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);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment