List:Commits« Previous MessageNext Message »
From:He Zhenxing Date:April 9 2009 8:58am
Subject:bzr commit into mysql-5.0-bugteam branch (zhenxing.he:2721) Bug#37145
View as plain text  
#At file:///media/sdb2/hezx/work/mysql/bzrwork/b37145/5.0-bugteam/ based on revid:anurag.shekhar@stripped

 2721 He Zhenxing	2009-04-09
      Fix compile error on windows for BUG#37145 on 5.0-bugteam

    M  client/mysqltest.c
=== modified file 'client/mysqltest.c'
--- a/client/mysqltest.c	2009-04-09 07:42:59 +0000
+++ b/client/mysqltest.c	2009-04-09 08:58:18 +0000
@@ -4087,6 +4087,7 @@ int select_connection_name(const char *n
 
 int select_connection(struct st_command *command)
 {
+  int ret;
   char *p= command->first_argument;
   static DYNAMIC_STRING ds_connection;
   const struct command_arg connection_args[] = {
@@ -4103,7 +4104,7 @@ int select_connection(struct st_command 
 
   DBUG_PRINT("info", ("changing connection: %s", ds_connection.str));
 
-  int ret= select_connection_name(ds_connection.str);
+  ret= select_connection_name(ds_connection.str);
   dynstr_free(&ds_connection);
   return ret;
 }


Attachment: [text/bzr-bundle] bzr/zhenxing.he@sun.com-20090409085818-671sf8ixpgxrwyg4.bundle
Thread
bzr commit into mysql-5.0-bugteam branch (zhenxing.he:2721) Bug#37145He Zhenxing9 Apr