]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
netlink: make "no name/no address" message a debug message
authorVincent Bernat <vincent@bernat.ch>
Fri, 12 Jun 2020 18:05:46 +0000 (20:05 +0200)
committerVincent Bernat <vincent@bernat.ch>
Fri, 12 Jun 2020 18:05:46 +0000 (20:05 +0200)
It seems it can happen on WLAN interfaces during AAA.

Fix #398

src/daemon/netlink.c

index f75dceb31807989f7f77fe350ef774e31929b35f..2c0425282dca292354c8bc81f625bdc38126b7da 100644 (file)
@@ -385,7 +385,7 @@ netlink_parse_link(struct nlmsghdr *msg,
                }
        }
        if (!iff->name || !iff->address) {
-               log_info("netlink", "interface %d does not have a name or an address, skip",
+               log_debug("netlink", "interface %d does not have a name or an address, skip",
                    iff->index);
                return -1;
        }