diff options
author | unknown <serg@serg.mylan> | 2003-10-24 23:27:21 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-10-24 23:27:21 +0200 |
commit | ea47b72d150014b2b3633ae9c32b3e98e6288ec5 (patch) | |
tree | b8897b47e2ad7d929f25f6603752d75cbe47ed29 /sql/sql_acl.h | |
parent | e5386bcb6b439b637586adf6c492aadbe570a117 (diff) | |
download | mariadb-git-ea47b72d150014b2b3633ae9c32b3e98e6288ec5.tar.gz |
removed one more hack that - as usual - almost always worked
(but broke permission handling for *some* IP's after we started to compare in utf8)
Bug #1636
Diffstat (limited to 'sql/sql_acl.h')
-rw-r--r-- | sql/sql_acl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_acl.h b/sql/sql_acl.h index 220eb0d55ad..7e96f2eaff1 100644 --- a/sql/sql_acl.h +++ b/sql/sql_acl.h @@ -134,7 +134,7 @@ public: my_bool acl_init(THD *thd, bool dont_read_acl_tables); void acl_reload(THD *thd); void acl_free(bool end=0); -ulong acl_get(const char *host, const char *ip, const char *bin_ip, +ulong acl_get(const char *host, const char *ip, const char *user, const char *db, my_bool db_is_pattern); int acl_getroot(THD *thd, USER_RESOURCES *mqh, const char *passwd, uint passwd_len); |