diff options
author | dlenev@mysql.com <> | 2005-09-01 23:25:29 +0400 |
---|---|---|
committer | dlenev@mysql.com <> | 2005-09-01 23:25:29 +0400 |
commit | d23732962fc3988a9992794f5dd49fbee231bfd9 (patch) | |
tree | a5830cd512f96c9dfcac6af5cf627770f7fd7a72 /sql/sql_acl.h | |
parent | 97820040028187b61da57165aa1d683bb5c8dcff (diff) | |
parent | 0683c122b65ad11f9b83ba3f7552419790d5517a (diff) | |
download | mariadb-git-d23732962fc3988a9992794f5dd49fbee231bfd9.tar.gz |
Merge mysql.com:/home/dlenev/src/mysql-4.1-bg12423
into mysql.com:/home/dlenev/src/mysql-5.0-merges
Diffstat (limited to 'sql/sql_acl.h')
-rw-r--r-- | sql/sql_acl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_acl.h b/sql/sql_acl.h index eba000a627a..6e6f33e68c2 100644 --- a/sql/sql_acl.h +++ b/sql/sql_acl.h @@ -174,8 +174,8 @@ public: /* prototypes */ bool hostname_requires_resolving(const char *hostname); -my_bool acl_init(THD *thd, bool dont_read_acl_tables); -void acl_reload(THD *thd); +my_bool acl_init(bool dont_read_acl_tables); +my_bool acl_reload(THD *thd); void acl_free(bool end=0); ulong acl_get(const char *host, const char *ip, const char *user, const char *db, my_bool db_is_pattern); @@ -196,9 +196,9 @@ bool mysql_routine_grant(THD *thd, TABLE_LIST *table, bool is_proc, List <LEX_USER> &user_list, ulong rights, bool revoke, bool no_error); ACL_USER *check_acl_user(LEX_USER *user_name, uint *acl_acl_userdx); -my_bool grant_init(THD *thd); +my_bool grant_init(); void grant_free(void); -void grant_reload(THD *thd); +my_bool grant_reload(THD *thd); bool check_grant(THD *thd, ulong want_access, TABLE_LIST *tables, uint show_command, uint number, bool dont_print_error); bool check_grant_column (THD *thd, GRANT_INFO *grant, |