diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-12-07 15:39:46 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-12-07 15:39:46 +0000 |
commit | 96d6a116316e15c7684ae1ad8ff639f4e768e9fe (patch) | |
tree | ff7e05c7cc8494fa152c6dd099649113e17f7aeb /ndb/src/mgmclient/CommandInterpreter.cpp | |
parent | 835afc54ec5cb98823689f38df916fbc35d0f8d8 (diff) | |
download | mariadb-git-96d6a116316e15c7684ae1ad8ff639f4e768e9fe.tar.gz |
added returntype BaseString& for ndb_upper and ndb_lower instead of void
uppercase printout
ndb/include/util/BaseString.hpp:
added returntype BaseString& for ndb_upper and ndb_lower instead of void
ndb/src/mgmclient/CommandInterpreter.cpp:
uppercase printout
Diffstat (limited to 'ndb/src/mgmclient/CommandInterpreter.cpp')
-rw-r--r-- | ndb/src/mgmclient/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/ndb/src/mgmclient/CommandInterpreter.cpp index 3a9b3c47376..53c0e3b673e 100644 --- a/ndb/src/mgmclient/CommandInterpreter.cpp +++ b/ndb/src/mgmclient/CommandInterpreter.cpp @@ -1249,7 +1249,7 @@ CommandInterpreter::executeClusterLog(char* parameters) printError(); DBUG_VOID_RETURN; } - ndbout << item << " " << (res_enable ? "enabled":"disabled") << endl; + ndbout << BaseString(item).ndb_toupper().c_str() << " " << (res_enable ? "enabled":"disabled") << endl; item = strtok_r(NULL, " ", &tmpPtr); } while(item != NULL); |