mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Rename send_ok to my_ok. Similarly to my_error, it only records the status,
does not send it to the client.
This commit is contained in:
@ -334,7 +334,7 @@ check_user(THD *thd, enum enum_server_command command,
|
||||
if (mysql_change_db(thd, &db_str, FALSE))
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
send_ok(thd);
|
||||
my_ok(thd);
|
||||
DBUG_RETURN(0);
|
||||
#else
|
||||
|
||||
@ -483,7 +483,7 @@ check_user(THD *thd, enum enum_server_command command,
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
}
|
||||
send_ok(thd);
|
||||
my_ok(thd);
|
||||
thd->password= test(passwd_len); // remember for error messages
|
||||
/* Ready to handle queries */
|
||||
DBUG_RETURN(0);
|
||||
|
Reference in New Issue
Block a user