List:Internals« Previous MessageNext Message »
From:bar Date:October 14 2005 11:19am
Subject:bk commit into 5.0 tree (bar:1.2042)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of bar. When bar 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.2042 05/10/14 14:19:15 bar@stripped +1 -0
  mysql.cc:
    After merge fix.

  client/mysql.cc
    1.186 05/10/14 14:18:58 bar@stripped +3 -3
    After merge fix.

# 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:	bar
# Host:	bar.intranet.mysql.r18.ru
# Root:	/usr/home/bar/mysql-5.0

--- 1.185/client/mysql.cc	2005-10-14 14:17:01 +05:00
+++ 1.186/client/mysql.cc	2005-10-14 14:18:58 +05:00
@@ -1193,16 +1193,16 @@
 #ifdef USE_MB
     int length;
     if (use_mb(charset_info) &&
-        (lenght= my_ismbchar(charset_info, pos, end_of_line)))
+        (length= my_ismbchar(charset_info, pos, end_of_line)))
     {
       if (!*ml_comment)
       {
-        while (lenght--)
+        while (length--)
           *out++ = *pos++;
         pos--;
       }
       else
-        pos+= lenght - 1;
+        pos+= length - 1;
       continue;
     }
 #endif
Thread
bk commit into 5.0 tree (bar:1.2042)bar14 Oct