udev: drop colon from ID_NET_NAME_MAC

Fixes a bug introduced by eaba9bb3e6.
This commit is contained in:
Yu Watanabe
2021-11-11 11:56:53 +09:00
parent e44cd43788
commit dfa4876c41

View File

@@ -957,7 +957,7 @@ static int builtin_net_id(sd_device *dev, sd_netlink **rtnl, int argc, char *arg
if (names_mac(dev, &info) >= 0) {
char str[ALTIFNAMSIZ];
xsprintf(str, "%s%s", prefix, HW_ADDR_TO_STR(&info.hw_addr));
xsprintf(str, "%s%s", prefix, HW_ADDR_TO_STR_FULL(&info.hw_addr, HW_ADDR_TO_STRING_NO_COLON));
udev_builtin_add_property(dev, test, "ID_NET_NAME_MAC", str);
ieee_oui(dev, &info, test);