List:Commits« Previous MessageNext Message »
From:msvensson Date:September 20 2006 5:43am
Subject:bk commit into 5.1 tree (msvensson:1.2344)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of msvensson. When msvensson 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@stripped, 2006-09-20 07:43:03+02:00, msvensson@neptunus.(none) +1 -0
  Fix check of parameter type in mysqld_start. 

  mysql-test/mysql-test-run.pl@stripped, 2006-09-20 07:42:59+02:00, msvensson@neptunus.(none) +2 -2
    Fix check of parameter type in mysqld_start. 

# 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:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-5.1-new-maint

--- 1.179/mysql-test/mysql-test-run.pl	2006-09-20 07:43:09 +02:00
+++ 1.180/mysql-test/mysql-test-run.pl	2006-09-20 07:43:09 +02:00
@@ -3120,13 +3120,13 @@
   {
     $exe= $exe_master_mysqld;
   }
-  if ( $type eq 'slave' )
+  elsif ( $type eq 'slave' )
   {
     $exe= $exe_slave_mysqld;
   }
   else
   {
-    mtr_error("Unknown 'type' passed to mysqld_start");
+    mtr_error("Unknown 'type' \"$type\" passed to mysqld_start");
   }
 
   mtr_init_args(\$args);
Thread
bk commit into 5.1 tree (msvensson:1.2344)msvensson20 Sep