From 7ad41997d19a626c5f0dbad72ec1f37d4bb2e2b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 17 Nov 2020 10:55:12 +0100 Subject: [PATCH] man/systemd.netdev: remove bogus markup There is no "Multicast" constant, and NULL doesn't make sense in the context of addresses. --- man/systemd.netdev.xml | 4 ++-- src/network/netdev/bond.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/systemd.netdev.xml b/man/systemd.netdev.xml index 6420488162..848ed8ec40 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 8c777b3a06..e27f36067b 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; }