List:Internals« Previous MessageNext Message »
From:Lars Thalmann Date:October 12 2005 5:31pm
Subject:bk commit into 5.0 tree (lars:1.2041)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of lthalmann. When lthalmann does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2041 05/10/12 19:31:24 lars@stripped +1 -0
  Fix of incompatible types
  len and packet_error needs to be of same type for (len == packet_error) to
  check failures

  client/mysqlbinlog.cc
    1.116 05/10/12 19:30:52 lars@stripped +2 -1
    Fix of incompatible types
    len and packet_error needs to be of same type for (len == packet_error) to
    check failures

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	lars
# Host:	dl145j.mysql.com
# Root:	/users/lthalmann/bk/mysql-5.0-mysqlbinlog-ulong

--- 1.115/client/mysqlbinlog.cc	2005-09-30 10:58:19 +02:00
+++ 1.116/client/mysqlbinlog.cc	2005-10-12 19:30:52 +02:00
@@ -1003,7 +1003,8 @@
 {
   char buf[128];
   LAST_EVENT_INFO last_event_info;
-  uint len, logname_len;
+  ulong len;
+  uint logname_len;
   NET* net;
   int error= 0;
   my_off_t old_off= start_position_mot;
Thread
bk commit into 5.0 tree (lars:1.2041)Lars Thalmann12 Oct