From: Yu Watanabe Date: Fri, 26 Nov 2021 12:00:18 +0000 (+0900) Subject: netif-util: update log message X-Git-Tag: v250-rc1~134^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4bd2c4e8e0b3d88e58aa54039a5bc38a3662e75d;p=thirdparty%2Fsystemd.git netif-util: update log message Follow-up for 37593b7c488f7b957936500158f200af16534c6b. --- diff --git a/src/shared/netif-util.c b/src/shared/netif-util.c index 8d3d4473fa6..6afb3c3b691 100644 --- a/src/shared/netif-util.c +++ b/src/shared/netif-util.c @@ -148,14 +148,14 @@ int net_verify_hardware_address( if (ether_addr_is_multicast(&new_hw_addr->ether)) { if (warn_invalid) - log_link_warning(&link, "Specified MAC address has multicast bit set, clearing the bit."); + log_link_warning(&link, "Specified MAC address has the multicast bit set, clearing the bit."); new_hw_addr->bytes[0] &= 0xfe; } if (!ether_addr_is_local(&new_hw_addr->ether)) { if (warn_invalid) - log_link_warning(&link, "Specified MAC address has not local assignment bit set, setting the bit."); + log_link_warning(&link, "Specified MAC address does not have the local assignment bit set, setting the bit."); new_hw_addr->bytes[0] |= 0x02; }