소스 검색

Remove debug printf.

Adam Ierymenko 8 년 전
부모
커밋
bad4b72f82
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      service/OneService.cpp

+ 1 - 3
service/OneService.cpp

@@ -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;
-				}
 			}
 		}