From: Date: March 16 2008 3:15pm Subject: bk commit into 5.1 tree (tomas:1.2541) BUG#35169 List-Archive: http://lists.mysql.com/commits/44093 X-Bug: 35169 Message-Id: <20080316141531.895B7441D1@linux.local> Below is the list of changes that have just been committed into a local 5.1 repository of tomas. When tomas 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-03-16 15:15:26+01:00, tomas@stripped +1 -0 Bug #35169 ndb_mgmd reports errors to stdout, not stderr storage/ndb/src/mgmsrv/InitConfigFileParser.cpp@stripped, 2008-03-16 15:15:23+01:00, tomas@stripped +1 -1 Bug #35169 ndb_mgmd reports errors to stdout, not stderr diff -Nrup a/storage/ndb/src/mgmsrv/InitConfigFileParser.cpp b/storage/ndb/src/mgmsrv/InitConfigFileParser.cpp --- a/storage/ndb/src/mgmsrv/InitConfigFileParser.cpp 2007-05-24 12:24:29 +02:00 +++ b/storage/ndb/src/mgmsrv/InitConfigFileParser.cpp 2008-03-16 15:15:23 +01:00 @@ -33,7 +33,7 @@ static void require(bool v) { if(!v) abo InitConfigFileParser::InitConfigFileParser(FILE * out) { m_info = new ConfigInfo(); - m_errstream = out ? out : stdout; + m_errstream = out ? out : stderr; } InitConfigFileParser::~InitConfigFileParser() {