From: Zbigniew Jędrzejewski-Szmek Date: Tue, 17 Nov 2020 09:55:12 +0000 (+0100) Subject: man/systemd.netdev: remove bogus markup X-Git-Tag: v247~57^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ad41997d19a626c5f0dbad72ec1f37d4bb2e2b6;p=thirdparty%2Fsystemd.git man/systemd.netdev: remove bogus markup There is no "Multicast" constant, and NULL doesn't make sense in the context of addresses. --- diff --git a/man/systemd.netdev.xml b/man/systemd.netdev.xml index 64204881628..848ed8ec40f 100644 --- a/man/systemd.netdev.xml +++ b/man/systemd.netdev.xml @@ -1771,8 +1771,8 @@ AdActorSystem= - Specifies the 802.3ad system mac address. This can not be either - NULL or Multicast. + Specifies the 802.3ad system MAC address. This cannot be a null or multicast address. + diff --git a/src/network/netdev/bond.c b/src/network/netdev/bond.c index 8c777b3a06e..e27f36067bd 100644 --- a/src/network/netdev/bond.c +++ b/src/network/netdev/bond.c @@ -469,7 +469,7 @@ int config_parse_ad_actor_system( } if (ether_addr_is_null(&n) || (n.ether_addr_octet[0] & 0x01)) { log_syntax(unit, LOG_WARNING, filename, line, 0, - "Not a valid MAC address %s, can not be null or multicast. Ignoring assignment.", + "Not an appropriate MAC address %s, cannot be null or multicast. Ignoring assignment.", rvalue); return 0; }