Remove spurious log statement

This commit is contained in:
Arnout Engelen
2016-03-21 09:52:18 +01:00
parent ac045b487a
commit 63114b6984

View File

@@ -51,7 +51,6 @@ bool already_seen(device* devices, char* devicename) {
// The interface is up, not a loopback and running?
bool up_running(int ifa_flags) {
std::cout << "up: " << (ifa_flags & IFF_UP) << std::endl;
return !(ifa_flags & IFF_LOOPBACK) &&
(ifa_flags & IFF_UP) &&
(ifa_flags & IFF_RUNNING);