From: Date: June 14 2005 3:13pm Subject: bk commit into 5.0 tree (petr:1.1928) BUG#11200 List-Archive: http://lists.mysql.com/internals/25977 X-Bug: 11200 Message-Id: <20050614131355.2902B160967@linux.local> Below is the list of changes that have just been committed into a local 5.0 repository of cps. When cps 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.1928 05/06/14 17:13:42 petr@stripped +1 -0 Fix for Bug #11200 show instance options returns garbage instead of log options server-tools/instance-manager/commands.cc 1.24 05/06/14 17:13:34 petr@stripped +3 -0 Send an empty string in the option_value column, if no option value is given # 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: petr # Host: owlet. # Root: /home/cps/mysql/trees/mysql-5.0 --- 1.23/server-tools/instance-manager/commands.cc 2005-06-07 15:46:57 +04:00 +++ 1.24/server-tools/instance-manager/commands.cc 2005-06-14 17:13:34 +04:00 @@ -316,7 +316,10 @@ *option_value= '='; } else + { store_to_string(&send_buff, tmp_option + 2, &position); + store_to_string(&send_buff, "", &position); + } if (send_buff.is_error() || my_net_write(net, send_buff.buffer, (uint) position))