Fixing some problems in regfile.cpp that have made yate cvs for the first time in history to not compile.

git-svn-id: http://voip.null.ro/svn/yate@126 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
diana 2004-12-13 13:38:30 +00:00
parent 3fd0fa7a3c
commit 9bdb9a2c11
1 changed files with 2 additions and 2 deletions

View File

@ -142,8 +142,8 @@ bool RouteHandler::received(Message &msg)
bool StatusHandler::received(Message &msg)
{
msg.retValue() << "Regfile,users=";
for (int i=0;i<s_cfg.count(),i++)
msg.retValue() << s_cfg.getSection();
for (int i=0;i<s_cfg.sections();i++)
msg.retValue() << s_cfg.getSection(i);
msg.retValue() <<"\n";
return false;
}