diff options
Diffstat (limited to 'src/network/networkd-network.c')
-rw-r--r-- | src/network/networkd-network.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c index 75cc7d2f7b..075596af6b 100644 --- a/src/network/networkd-network.c +++ b/src/network/networkd-network.c @@ -226,16 +226,16 @@ int network_get(Manager *manager, struct udev_device *device, udev_device_get_property_value(device, "ID_NET_DRIVER"), udev_device_get_devtype(device), ifname)) { - const char *attr; - uint8_t name_assign_type = NET_NAME_UNKNOWN; - if (network->match_name) { + const char *attr; + uint8_t name_assign_type = NET_NAME_UNKNOWN; + attr = udev_device_get_sysattr_value(device, "name_assign_type"); if (attr) (void)safe_atou8(attr, &name_assign_type); if (name_assign_type == NET_NAME_ENUM) - log_warning("%-*s: found matching network '%s', based on potentially unstable ifname", + log_warning("%-*s: found matching network '%s', based on potentially unpredictable ifname", IFNAMSIZ, ifname, network->filename); else log_debug("%-*s: found matching network '%s'", IFNAMSIZ, ifname, network->filename); |