From: Roy Marples Date: Wed, 20 May 2020 16:37:21 +0000 (+0100) Subject: ARP: reduce conflicts from errors to warnings X-Git-Tag: v9.1.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce1f59bef3420015ae06ff8f7c04c8f56c320c90;p=thirdparty%2Fdhcpcd.git ARP: reduce conflicts from errors to warnings It's only an error on DAD failure and you're warned about this already. --- diff --git a/src/arp.c b/src/arp.c index 7f08a17b..0e057aca 100644 --- a/src/arp.c +++ b/src/arp.c @@ -134,12 +134,12 @@ arp_report_conflicted(const struct arp_state *astate, hwaddr_ntoa(amsg->sha, astate->iface->hwlen, abuf, sizeof(abuf)); if (bpf_frame_header_len(astate->iface) == 0) { - logerrx("%s: %s claims %s", + logwarnx("%s: %s claims %s", astate->iface->name, abuf, inet_ntoa(astate->addr)); return; } - logerrx("%s: %s(%s) claims %s", + logwarnx("%s: %s(%s) claims %s", astate->iface->name, abuf, hwaddr_ntoa(amsg->fsha, astate->iface->hwlen, fbuf, sizeof(fbuf)), inet_ntoa(astate->addr));