From e5f30a8375ad1d9bc1ad60047fa61da40b9a3a19 Mon Sep 17 00:00:00 2001 From: "monty@mysql.com" <> Date: Fri, 22 Oct 2004 19:50:31 +0300 Subject: [PATCH] After merge fixes --- sql/sql_parse.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index e9ec5022db0..d712d3948d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1575,7 +1575,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd, mysql_log.write(thd,command,packet); if (mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db), 0, 0) < 0) - send_error(&thd->net, thd->killed ? ER_SERVER_SHUTDOWN : 0); + send_error(thd, thd->killed ? ER_SERVER_SHUTDOWN : 0); break; } case COM_DROP_DB: // QQ: To be removed @@ -1598,7 +1598,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd, mysql_log.write(thd,command,db); if (mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db), 0, 0) < 0) - send_error(&thd->net, thd->killed ? ER_SERVER_SHUTDOWN : 0); + send_error(thd, thd->killed ? ER_SERVER_SHUTDOWN : 0); break; } #ifndef EMBEDDED_LIBRARY