Commit d2fb76d8 authored by Mike Gabriel's avatar Mike Gabriel

nxcomp/{Client|}Proxy.cpp: Typo fix in error messages.

parent 0006fc04
......@@ -193,11 +193,11 @@ int ClientProxy::handleNewAgentConnection(Agent *agent)
if (channelId == -1)
{
#ifdef PANIC
*logofs << "ClientProxy: PANIC! Maximum mumber of available "
*logofs << "ClientProxy: PANIC! Maximum number of available "
<< "channels exceeded.\n" << logofs_flush;
#endif
cerr << "Error" << ": Maximum mumber of available "
cerr << "Error" << ": Maximum number of available "
<< "channels exceeded.\n";
return -1;
......@@ -226,11 +226,11 @@ int ClientProxy::handleNewXConnection(int clientFd)
if (channelId == -1)
{
#ifdef PANIC
*logofs << "ClientProxy: PANIC! Maximum mumber of available "
*logofs << "ClientProxy: PANIC! Maximum number of available "
<< "channels exceeded.\n" << logofs_flush;
#endif
cerr << "Error" << ": Maximum mumber of available "
cerr << "Error" << ": Maximum number of available "
<< "channels exceeded.\n";
return -1;
......
......@@ -5908,11 +5908,11 @@ int Proxy::handleNewGenericConnection(int clientFd, T_channel_type type, const c
if (channelId == -1)
{
#ifdef PANIC
*logofs << "Proxy: PANIC! Maximum mumber of available "
*logofs << "Proxy: PANIC! Maximum number of available "
<< "channels exceeded.\n" << logofs_flush;
#endif
cerr << "Error" << ": Maximum mumber of available "
cerr << "Error" << ": Maximum number of available "
<< "channels exceeded.\n";
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment