From bd4b47813844aa0e68e9074b3ac516c383ca8bab Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Fri, 12 Jul 2019 12:15:14 +0200 Subject: interfaces: ignore only interfaces we really want to Once an interface got ignored, ALL interfaces coming after it were dropped too. --- agent/interfaces.c | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/interfaces.c b/agent/interfaces.c index 3a3b39c..993c660 100644 --- a/agent/interfaces.c +++ b/agent/interfaces.c @@ -304,6 +304,7 @@ nice_interfaces_get_local_ips (gboolean include_loopback) } #ifdef IGNORED_IFACE_PREFIX + ignored = FALSE; for (prefix = ignored_iface_prefix_list; *prefix; prefix++) { if (g_str_has_prefix (ifa->ifa_name, *prefix)) { nice_debug ("Ignoring interface %s as it matches prefix %s", -- cgit v1.2.1