mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Merge work:/home/bk/mysql-4.0 into hundin.mysql.fi:/my/bk/mysql-4.0
sql/sql_parse.cc: Auto merged
This commit is contained in:
commit
0ee35d6da9
1 changed files with 1 additions and 2 deletions
|
@ -233,8 +233,7 @@ static bool check_user(THD *thd,enum_server_command command, const char *user,
|
|||
db ? db : (char*) "");
|
||||
thd->db_access=0;
|
||||
/* Don't allow user to connect if he has done too many queries */
|
||||
if (get_or_create_user_conn(thd,user,thd->host_or_ip,max_questions) &&
|
||||
(max_questions || max_user_connections))
|
||||
if ((max_questions || max_user_connections) && get_or_create_user_conn(thd,user,thd->host_or_ip,max_questions))
|
||||
return -1;
|
||||
if (max_user_connections && thd->user_connect &&
|
||||
check_for_max_user_connections(thd->user_connect))
|
||||
|
|
Loading…
Reference in a new issue