diff options
author | unknown <joreland@mysql.com> | 2005-04-12 13:56:24 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2005-04-12 13:56:24 +0200 |
commit | efd06e1910797dd801e4156f1e654561d345cee6 (patch) | |
tree | 94217e2a505d400f14fc94bfef5016a382a891b0 /ndb | |
parent | 583d38f3f7f39d8124ae5785d3217b1d08f39c6d (diff) | |
download | mariadb-git-efd06e1910797dd801e4156f1e654561d345cee6.tar.gz |
bug#9757 - ndb - post review
use DBUG_RETURN
ndb/src/mgmsrv/MgmtSrvr.cpp:
bug#9757 - ndb
use DBUG_RETURN
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/mgmsrv/MgmtSrvr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ndb/src/mgmsrv/MgmtSrvr.cpp b/ndb/src/mgmsrv/MgmtSrvr.cpp index 98cdcdca2f7..fb05e57e138 100644 --- a/ndb/src/mgmsrv/MgmtSrvr.cpp +++ b/ndb/src/mgmsrv/MgmtSrvr.cpp @@ -2073,9 +2073,8 @@ MgmtSrvr::handleStatus(NodeId nodeId, bool alive, bool nfComplete) theData[0] = EventReport::Disconnected; if(nfComplete) { - theData[0] = EventReport::NodeFailCompleted; handleStopReply(nodeId, 0); - return; + DBUG_VOID_RETURN; } } |