summaryrefslogtreecommitdiff
path: root/sql/sql_parse.cc
diff options
context:
space:
mode:
authorserg@serg.mylan <>2003-10-25 21:12:38 +0200
committerserg@serg.mylan <>2003-10-25 21:12:38 +0200
commiteb93b6b81a51bb2bea93b5907d85559c579a4a54 (patch)
tree17affd0161b5316ebf27706ad7b5fd2377d787d8 /sql/sql_parse.cc
parent9fa202de5f7fd6ed943945ae7f17f7d5154117bc (diff)
downloadmariadb-git-eb93b6b81a51bb2bea93b5907d85559c579a4a54.tar.gz
return proper value (otherwise mysld crashes here)
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r--sql/sql_parse.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc
index e2410ed7800..b3c2b0c9274 100644
--- a/sql/sql_parse.cc
+++ b/sql/sql_parse.cc
@@ -317,10 +317,10 @@ int check_user(THD *thd, enum enum_server_command command,
if ((ur.questions || ur.updates ||
ur.connections || max_user_connections) &&
get_or_create_user_conn(thd,thd->user,thd->host_or_ip,&ur))
- DBUG_RETURN(1);
+ DBUG_RETURN(-1);
if (thd->user_connect && thd->user_connect->user_resources.connections &&
check_for_max_user_connections(thd, thd->user_connect))
- DBUG_RETURN(1);
+ DBUG_RETURN(-1);
/* Change database if necessary: OK or FAIL is sent in mysql_change_db */
if (db && db[0])