From: Date: December 19 2008 11:45am Subject: bzr commit into mysql-5.1 branch (msvensson:3179) WL#4350 List-Archive: http://lists.mysql.com/commits/62068 Message-Id: <20081219104520.D04F313403E@pilot> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///home/msvensson/mysql/6.4/ based on revid:msvensson@stripped 3179 Magnus Svensson 2008-12-19 WL#4350 return "true" from change_config instead of 0 modified: storage/ndb/src/mgmsrv/MgmtSrvr.cpp === modified file 'storage/ndb/src/mgmsrv/MgmtSrvr.cpp' --- a/storage/ndb/src/mgmsrv/MgmtSrvr.cpp 2008-12-17 16:18:23 +0000 +++ b/storage/ndb/src/mgmsrv/MgmtSrvr.cpp 2008-12-19 10:45:08 +0000 @@ -3939,7 +3939,7 @@ MgmtSrvr::change_config(Config& new_conf g_eventLogger->info("Config change completed"); - return 0; + return true; }