summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.cc
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2003-03-17 15:06:06 +0200
committermonty@narttu.mysql.fi <>2003-03-17 15:06:06 +0200
commit5dd970c335d61ac5bf594e9b4a2b508829115631 (patch)
tree89c2cddedab130da0fd07ba77db571a22d84b51e /sql/ha_myisam.cc
parente7288f279ec0811ebf54f916e226213f28f07624 (diff)
parent63a307bb38b6d2462655bb31efff80e820b610d9 (diff)
downloadmariadb-git-5dd970c335d61ac5bf594e9b4a2b508829115631.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into narttu.mysql.fi:/my/mysql-4.1
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r--sql/ha_myisam.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc
index 4f61ee48748..829ec5b0ade 100644
--- a/sql/ha_myisam.cc
+++ b/sql/ha_myisam.cc
@@ -77,10 +77,10 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type,
length=(uint) (strxmov(name, param->db_name,".",param->table_name,NullS) -
name);
protocol->prepare_for_resend();
- protocol->store(name, length);
- protocol->store(param->op_name);
- protocol->store(msg_type);
- protocol->store(msgbuf, msg_length);
+ protocol->store(name, length, system_charset_info);
+ protocol->store(param->op_name, system_charset_info);
+ protocol->store(msg_type, system_charset_info);
+ protocol->store(msgbuf, msg_length, system_charset_info);
if (protocol->write())
sql_print_error("Failed on my_net_write, writing to stderr instead: %s\n",
msgbuf);