1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Clean up error message for connections-per-hour user limit

being exceeded. (Bug #9947)
This commit is contained in:
jimw@mysql.com
2005-04-27 17:05:15 -07:00
parent 6f95cf02ab
commit 9c33716380

View File

@ -449,7 +449,7 @@ static int check_for_max_user_connections(THD *thd, USER_CONN *uc)
uc->user_resources.connections <= uc->conn_per_hour)
{
net_printf(thd, ER_USER_LIMIT_REACHED, uc->user,
"max_connections",
"max_connections_per_hour",
(long) uc->user_resources.connections);
error=1;
goto end;