id, name and comment are member vars in FWObject

This commit is contained in:
Vadim Kurland
2008-06-10 23:43:48 +00:00
parent 1410186180
commit ca3511a8e7
+1 -1
View File
@@ -309,7 +309,7 @@ string RoutingCompiler_ipt::PrintRule::_printRItf(RoutingRule *rule)
ref=itfrel->front(); ref=itfrel->front();
Interface *itf=Interface::cast(FWReference::cast(ref)->getPointer()); Interface *itf=Interface::cast(FWReference::cast(ref)->getPointer());
if(itf != NULL) return "dev " + itf->getStr("name") + " "; if(itf != NULL) return "dev " + itf->getName() + " ";
else return ""; else return "";
} }