Commit 1ff1cb10 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

fix compile error

parent 5cf5a9a1
...@@ -968,7 +968,7 @@ static my_bool acl_load(THD *thd, TABLE_LIST *tables) ...@@ -968,7 +968,7 @@ static my_bool acl_load(THD *thd, TABLE_LIST *tables)
{ {
/* Starting from 5.0.3 we have max_user_connections field */ /* Starting from 5.0.3 we have max_user_connections field */
ptr= get_field(thd->mem_root, table->field[next_field++]); ptr= get_field(thd->mem_root, table->field[next_field++]);
user.user_resource.user_conn= ptr ? atoll(ptr) : 0; user.user_resource.user_conn= ptr ? atoi(ptr) : 0;
} }
if (table->s->fields >= 41) if (table->s->fields >= 41)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment