diff options
| author | Michael Biebl <biebl@debian.org> | 2024-09-01 22:38:46 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-09-01 22:38:46 +0200 |
| commit | e89be0baafbf2359719e7150e374d9e3efde4513 (patch) | |
| tree | aeb24b61eb3ef72efd98bbc7de168df952f95a6b /src/core/devices/nm-device-utils.c | |
| parent | 81f4784c87916c34bda1865ca8aafdff7f8ba55a (diff) | |
| parent | f9bfd1158b8d08d6a5ed3bb7cc1ba7a6455e5201 (diff) | |
Update upstream source from tag 'upstream/1.49.90'
Update to upstream version '1.49.90' with Debian dir 91100697245f76450c5ee1f238e8a69862e0f418
Diffstat (limited to 'src/core/devices/nm-device-utils.c')
| -rw-r--r-- | src/core/devices/nm-device-utils.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/devices/nm-device-utils.c b/src/core/devices/nm-device-utils.c index 4597ba85..ccb6292b 100644 --- a/src/core/devices/nm-device-utils.c +++ b/src/core/devices/nm-device-utils.c @@ -152,14 +152,13 @@ NM_UTILS_LOOKUP_STR_DEFINE(nm_device_mtu_source_to_string, NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_MTU_SOURCE_CONNECTION, "connection"), ); -NM_UTILS_LOOKUP_STR_DEFINE(nm_device_sys_iface_state_to_string, - NMDeviceSysIfaceState, +NM_UTILS_LOOKUP_STR_DEFINE(nm_device_managed_type_to_string, + NMDeviceManagedType, NM_UTILS_LOOKUP_DEFAULT_NM_ASSERT("unknown"), - NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_SYS_IFACE_STATE_EXTERNAL, "external"), - NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_SYS_IFACE_STATE_ASSUME, "assume"), - NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_SYS_IFACE_STATE_MANAGED, "managed"), - NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_SYS_IFACE_STATE_REMOVED, - "removed"), ); + NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_MANAGED_TYPE_EXTERNAL, "external"), + NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_MANAGED_TYPE_ASSUME, "assume"), + NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_MANAGED_TYPE_FULL, "full"), + NM_UTILS_LOOKUP_STR_ITEM(NM_DEVICE_MANAGED_TYPE_REMOVED, "removed"), ); NM_UTILS_LOOKUP_STR_DEFINE(nm_device_ip_state_to_string, NMDeviceIPState, |