diff options
author | serg@serg.mylan <> | 2003-10-24 23:27:21 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-10-24 23:27:21 +0200 |
commit | c752d2cad0672a69945972166b2830da94827a3e (patch) | |
tree | b8897b47e2ad7d929f25f6603752d75cbe47ed29 /sql/sql_acl.h | |
parent | 6457b89948c034aa7a65407555d2db73e9ab56fb (diff) | |
download | mariadb-git-c752d2cad0672a69945972166b2830da94827a3e.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); |