From eca8baa028678c6f9d703c9fde7bdf45ef01bc06 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 11 Apr 2024 18:52:33 +0200 Subject: conf: We're interested in the MAC address, not in the MAC itself Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conf.c') diff --git a/conf.c b/conf.c index 9e0318a..90d3436 100644 --- a/conf.c +++ b/conf.c @@ -625,7 +625,7 @@ static unsigned int conf_ip4(unsigned int ifi, int rc = nl_link_get_mac(nl_sock, ifi, mac); if (rc < 0) { char ifname[IFNAMSIZ]; - err("Couldn't discover MAC for %s: %s", + err("Couldn't discover MAC address for %s: %s", if_indextoname(ifi, ifname), strerror(-rc)); return 0; } @@ -684,7 +684,7 @@ static unsigned int conf_ip6(unsigned int ifi, rc = nl_link_get_mac(nl_sock, ifi, mac); if (rc < 0) { char ifname[IFNAMSIZ]; - err("Couldn't discover MAC for %s: %s", + err("Couldn't discover MAC address for %s: %s", if_indextoname(ifi, ifname), strerror(-rc)); return 0; } -- cgit v1.2.3