From: Date: September 28 2005 11:58am Subject: bk commit into 5.0 tree (jonas:1.2002) BUG#13512 List-Archive: http://lists.mysql.com/internals/30428 X-Bug: 13512 Message-Id: <20050928095838.EA72E146715@perch.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of jonas. When jonas 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.2002 05/09/28 11:58:34 jonas@stripped +1 -0 ndb - bug#13512 core dump on no free node id ndb/tools/restore/consumer_restore.cpp 1.20 05/09/28 11:58:32 jonas@stripped +1 -1 return correct value # 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: jonas # Host: perch.ndb.mysql.com # Root: /home/jonas/src/mysql-5.0-push --- 1.19/ndb/tools/restore/consumer_restore.cpp 2005-09-06 09:41:57 +02:00 +++ 1.20/ndb/tools/restore/consumer_restore.cpp 2005-09-28 11:58:32 +02:00 @@ -38,7 +38,7 @@ m_cluster_connection = new Ndb_cluster_connection(g_connect_string); if(m_cluster_connection->connect(12, 5, 1) != 0) { - return -1; + return false; } m_ndb = new Ndb(m_cluster_connection);