diff options
author | unknown <ndbdev@dl145b.mysql.com> | 2005-06-03 11:16:37 +0200 |
---|---|---|
committer | unknown <ndbdev@dl145b.mysql.com> | 2005-06-03 11:16:37 +0200 |
commit | 74dd6421777f2046b8e5067f8c918d1f29e9f339 (patch) | |
tree | 18503e6732685a35b5e3a9c748db7aac1455c863 /sql | |
parent | 0d4b118455b1b97e8adc316407e26a8d734d3f04 (diff) | |
download | mariadb-git-74dd6421777f2046b8e5067f8c918d1f29e9f339.tar.gz |
sql_repl.cc:
Bug #11064 some read error not detected in replication on 64-bit platform
sql/sql_repl.cc:
Bug #11064 some read error not detected in replication on 64-bit platform
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sql_repl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index 9485031c144..ed2d477fc5d 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -84,7 +84,7 @@ static int send_file(THD *thd) char fname[FN_REFLEN+1]; const char *errmsg = 0; int old_timeout; - uint packet_len; + unsigned long packet_len; char buf[IO_SIZE]; // It's safe to alloc this DBUG_ENTER("send_file"); |