reverting wrong fix

This commit is contained in:
unknown 2002-02-11 14:47:22 +02:00
parent 8a99eebe92
commit 728c191b11

View File

@ -233,8 +233,7 @@ static bool check_user(THD *thd,enum_server_command command, const char *user,
db ? db : (char*) ""); db ? db : (char*) "");
thd->db_access=0; thd->db_access=0;
/* Don't allow user to connect if he has done too many queries */ /* 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) && if ((max_questions || max_user_connections) && get_or_create_user_conn(thd,user,thd->host_or_ip,max_questions))
(max_questions || max_user_connections))
return -1; return -1;
if (max_user_connections && thd->user_connect && if (max_user_connections && thd->user_connect &&
check_for_max_user_connections(thd->user_connect)) check_for_max_user_connections(thd->user_connect))