From d27132953d608aed019e48ee180821fc87b47556 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 16 Jun 2005 14:21:48 +1000 Subject: [PATCH] fix debug string in TR::report_disconnect ndb/src/common/transporter/TransporterRegistry.cpp: fix debug string for TR::report_disconnect --- ndb/src/common/transporter/TransporterRegistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);