List:Commits« Previous MessageNext Message »
From:cbell Date:February 27 2008 8:22pm
Subject:bk commit into 6.0 tree (cbell:1.2574) BUG#34901
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of cbell.  When cbell 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, 2008-02-27 15:22:07-05:00, cbell@mysql_cab_desk. +1 -0
  BUG#34901 : Compiler warning for backup stream library 
  
  Set the default return code for the bstream_wr_db_catalog() method
  to return BSTREAM_OK.

  sql/backup/stream_v1.c@stripped, 2008-02-27 15:22:04-05:00, cbell@mysql_cab_desk. +1 -1
    BUG#34901 : Compiler warning for backup stream library 
    
    Set the default return code for the bstream_wr_db_catalog() method
    to return BSTREAM_OK.

diff -Nrup a/sql/backup/stream_v1.c b/sql/backup/stream_v1.c
--- a/sql/backup/stream_v1.c	2008-02-13 06:40:24 -05:00
+++ b/sql/backup/stream_v1.c	2008-02-27 15:22:04 -05:00
@@ -928,7 +928,7 @@ int bstream_wr_db_catalogue(backup_strea
 {
   void *iter;
   struct st_bstream_dbitem_info *item;
-  int ret;
+  int ret= BSTREAM_OK;
   bool catalogue_empty= TRUE;
 
   iter= bcat_db_iterator_get(cat, db_info);

Thread
bk commit into 6.0 tree (cbell:1.2574) BUG#34901cbell27 Feb