Remove debug printf.

This commit is contained in:
Adam Ierymenko 2016-12-12 14:44:21 -08:00
parent 4702c5b4ee
commit bad4b72f82

View File

@ -2001,10 +2001,8 @@ public:
{
Mutex::Lock _l(_localConfig_m);
for(std::vector<std::string>::const_iterator p(_interfacePrefixBlacklist.begin());p!=_interfacePrefixBlacklist.end();++p) {
if (!strncmp(p->c_str(),ifname,p->length())) {
printf("%s\n",ifname);
if (!strncmp(p->c_str(),ifname,p->length()))
return false;
}
}
}