summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorstewart@mysql.com <>2005-06-16 14:21:48 +1000
committerstewart@mysql.com <>2005-06-16 14:21:48 +1000
commitec26af487dd78a5a0e4578dae4d71faf2ba3bd07 (patch)
treeb5bbe0376617371c77566401b3db5b45538864f5 /ndb
parentc7f9c0d871ef79cd8ed3b0e3241f7a02507c0224 (diff)
downloadmariadb-git-ec26af487dd78a5a0e4578dae4d71faf2ba3bd07.tar.gz
fix debug string in TR::report_disconnect
Diffstat (limited to 'ndb')
-rw-r--r--ndb/src/common/transporter/TransporterRegistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/common/transporter/TransporterRegistry.cpp b/ndb/src/common/transporter/TransporterRegistry.cpp
index e636766560b..3776bce7452 100644
--- a/ndb/src/common/transporter/TransporterRegistry.cpp
+++ b/ndb/src/common/transporter/TransporterRegistry.cpp
@@ -1208,7 +1208,7 @@ TransporterRegistry::report_connect(NodeId node_id)
void
TransporterRegistry::report_disconnect(NodeId node_id, int errnum)
{
- DBUG_ENTER("TransporterRegistry::report_connect");
+ DBUG_ENTER("TransporterRegistry::report_disconnect");
DBUG_PRINT("info",("performStates[%d]=DISCONNECTED",node_id));
performStates[node_id] = DISCONNECTED;
reportDisconnect(callbackObj, node_id, errnum);