1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Changed a call to handle_roles_mappings_table: first parameter is now more readable

This commit is contained in:
Vicențiu Ciorbaru
2013-10-17 15:10:07 -07:00
committed by Sergei Golubchik
parent 9506a07159
commit 13a1f6fd72

View File

@@ -6287,8 +6287,7 @@ static int handle_grant_table(TABLE_LIST *tables, uint table_no, bool drop,
if (table_no == 6) if (table_no == 6)
{ {
result= handle_roles_mappings_table(tables[6].table, drop, result= handle_roles_mappings_table(table, drop, user_from, user_to);
user_from, user_to);
DBUG_RETURN(result); DBUG_RETURN(result);
} }