1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Bug#27145 EXTRA_ACL troubles

Correction of backport patch:
* Fixed signature of check_access_table() for embedded build
* Fixed typo for last argument in a check_access() call from UINT_MAX to 0.
This commit is contained in:
Kristofer Pettersson
2009-11-10 15:56:05 +01:00
parent b921e93f80
commit 08aecd54db
2 changed files with 3 additions and 3 deletions

View File

@@ -2268,7 +2268,7 @@ mysql_execute_command(THD *thd)
privileges_requested,
all_tables, FALSE, UINT_MAX, FALSE);
else
res= check_access(thd, privileges_requested, any_db, 0, 0, 0, UINT_MAX);
res= check_access(thd, privileges_requested, any_db, 0, 0, 0, 0);
if (res)
break;