List:Commits« Previous MessageNext Message »
From:anna Date:June 2 2006 7:03pm
Subject:bk commit into 5.0 tree (anjuta:1.2168) BUG#19363
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of anjuta. When anjuta 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.2168 06/06/02 22:03:39 anjuta@stripped +2 -0
  BUG#19363: mysql --no_pager makes core dump.
  The problem was missing break; operator.

  client/mysql.cc
    1.206 06/06/02 22:03:35 anjuta@stripped +1 -0
    Fixed bug #19363: mysql --no_pager makes core dump. 
    There was break; missing in the case statement.

  BitKeeper/etc/ignore
    1.221 06/06/02 22:03:35 anjuta@stripped +1 -0
    Added client/#mysql.cc# to the ignore list

# 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:	anjuta
# Host:	arthur.local
# Root:	/home/my/mysql-5.0

--- 1.205/client/mysql.cc	2006-05-11 16:14:03 +03:00
+++ 1.206/client/mysql.cc	2006-06-02 22:03:35 +03:00
@@ -823,6 +823,7 @@
   case OPT_NOPAGER:
     printf("WARNING: option deprecated; use --disable-pager instead.\n");
     opt_nopager= 1;
+    break;
   case OPT_MYSQL_PROTOCOL:
   {
     if ((opt_protocol= find_type(argument, &sql_protocol_typelib,0)) <= 0)

--- 1.220/BitKeeper/etc/ignore	2006-05-01 20:14:40 +03:00
+++ 1.221/BitKeeper/etc/ignore	2006-06-02 22:03:35 +03:00
@@ -1282,3 +1282,4 @@
 extra/yassl/taocrypt/test/test
 extra/yassl/testsuite/testsuite
 client/mysql_upgrade
+client/#mysql.cc#
Thread
bk commit into 5.0 tree (anjuta:1.2168) BUG#19363anna2 Jun