fixed several bugs

This commit is contained in:
Jeff Hill
2000-05-04 01:11:29 +00:00
parent 8c2b53c9af
commit 98b9a5c3e1
10 changed files with 133 additions and 115 deletions

View File

@@ -30,7 +30,7 @@ void cacServiceList::registerService ( cacServiceIO &service )
this->unlock ();
}
bool cacServiceList::createChannel (const char *pName, cacChannel &chan)
cacChannelIO * cacServiceList::createChannelIO (const char *pName, cacChannel &chan)
{
cacChannelIO *pChanIO = 0;
@@ -45,11 +45,6 @@ bool cacServiceList::createChannel (const char *pName, cacChannel &chan)
}
this->unlock ();
if ( pChanIO ) {
return true;
}
else {
return false;
}
return pChanIO;
}