Fixed a number of errors reported by the Visual C++ compiler.

git-svn-id: http://voip.null.ro/svn/yate@3646 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2010-09-09 10:12:22 +00:00
parent c7b4b6f3a4
commit b2cbd994a9
3 changed files with 5 additions and 5 deletions

View File

@ -418,7 +418,7 @@ bool ETSIModem::decode(MsgType msg, const DataBlock& buffer)
case VisualIndicator: // 5.4.7
CHECK_LEN(1)
if (*pdata == 0 || *pdata == 255)
tmp = String::boolText(*pdata);
tmp = String::boolText(*pdata != 0);
else
tmp = (int)(*pdata);
params.addParam("visualindicator",tmp);

View File

@ -870,7 +870,7 @@ void SS7Router::routeChanged(const SS7Route* route, SS7PointCode::Type type,
if (!(*l3p)->getRoutePriority(type,remotePC))
continue;
for (ObjList* v = l3p->view(type).skipNull(); v; v = v->skipNext()) {
SS7Route* r = static_cast<const SS7Route*>(v->get());
SS7Route* r = static_cast<SS7Route*>(v->get());
if (r->packed() != route->packed())
continue;
SS7Route::State state = getRouteView(type,r->packed(),0,*l3p);
@ -890,7 +890,7 @@ void SS7Router::routeChanged(const SS7Route* route, SS7PointCode::Type type,
if (v)
v = v->skipNull();
for (; v; v = v->skipNext()) {
r = static_cast<const SS7Route*>(v->get());
r = static_cast<SS7Route*>(v->get());
if (r->priority() || (r->state() == SS7Route::Prohibited))
continue;
if (onlyPC && (r->packed() != onlyPC))
@ -956,7 +956,7 @@ void SS7Router::clearView(const SS7Layer3* network)
for (unsigned int i = 0; i < YSS7_PCTYPE_COUNT; i++) {
SS7PointCode::Type type = static_cast<SS7PointCode::Type>(i+1);
for (ObjList* v = p->view(type).skipNull(); v; v = v->skipNext()) {
SS7Route* r = static_cast<const SS7Route*>(v->get());
SS7Route* r = static_cast<SS7Route*>(v->get());
DDebug(this,DebugAll,"Route %u of view '%s' cleared: %s -> Prohibited",
r->packed(),network->toString().c_str(),
SS7Route::stateName(r->state()));

View File

@ -338,7 +338,7 @@ bool ADModule::attachETSI(Message& msg, DataSource* src, String& type, const cha
id << nextId();
DataConsumer* cons = new ETSIConsumer(id,notify,msg);;
DataTranslator::attachChain(src,cons);
bool ok = cons->getConnSource();
bool ok = (cons->getConnSource() != 0);
if (ok)
msg.userData(cons);
else