@ -84,7 +84,7 @@ void CDCSProtocolHandlerPool::release(CDCSProtocolHandler *handler)
handler->close();
delete handler ;
m_index = m_pool.end(); // since we removed an element, m_index is ouot of order, just move it back to the end
CLog::logInfo("Released DCS ProtocolHandler on port %u.\n", it->first);
CLog::logInfo("Released DCS ProtocolHandler on port %u.\n", handler->getPort());
return;
}
@ -84,7 +84,7 @@ void CDExtraProtocolHandlerPool::release(CDExtraProtocolHandler *handler)
delete handler;
m_index = m_pool.end(); // m_index might be out of order, reset it
CLog::logInfo("Releasing DExtra Protocol Handler on port %u.\n", it->first);
CLog::logInfo("Releasing DExtra Protocol Handler on port %u.\n", handler->getPort());
@ -85,7 +85,7 @@ void CDPlusProtocolHandlerPool::release(CDPlusProtocolHandler *handler)
m_index = m_pool.end(); // m_index might be ut of order so reset it
CLog::logInfo("Releasing DPlus ProtocolHandler on port %u.\n", it->first);
CLog::logInfo("Releasing DPlus ProtocolHandler on port %u.\n", handler->getPort());
Powered by TurnKey Linux.