diff options
author | bell@sanja.is.com.ua <> | 2004-04-10 01:14:32 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-04-10 01:14:32 +0300 |
commit | a535342d5711699bca922920519aefd279ef6d30 (patch) | |
tree | 9b43a6ee50851ff9a0c1df227464a4eb032802e2 /sql/sql_acl.h | |
parent | e8137a13e0532f1ebfadca02697f3f00a76acb68 (diff) | |
download | mariadb-git-a535342d5711699bca922920519aefd279ef6d30.tar.gz |
after review PS fixes
Diffstat (limited to 'sql/sql_acl.h')
-rw-r--r-- | sql/sql_acl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_acl.h b/sql/sql_acl.h index 4b911b44f77..a237b45e29c 100644 --- a/sql/sql_acl.h +++ b/sql/sql_acl.h @@ -154,7 +154,7 @@ my_bool grant_init(THD *thd); void grant_free(void); void grant_reload(THD *thd); bool check_grant(THD *thd, ulong want_access, TABLE_LIST *tables, - uint show_command, bool dont_print_error); + uint show_command, uint number, bool dont_print_error); bool check_grant_column (THD *thd,TABLE *table, const char *name, uint length, uint show_command=0); bool check_grant_all_columns(THD *thd, ulong want_access, TABLE *table); @@ -168,6 +168,6 @@ int mysql_drop_user(THD *thd, List <LEX_USER> &list); int mysql_revoke_all(THD *thd, List <LEX_USER> &list); #ifdef NO_EMBEDDED_ACCESS_CHECKS -#define check_grant(A,B,C,D,E) 0 +#define check_grant(A,B,C,D,E,F) 0 #define check_grant_db(A,B) 0 #endif |