diff options
| author | Michael Biebl <biebl@debian.org> | 2024-10-02 22:18:04 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-10-02 22:18:04 +0200 |
| commit | 9972a27754bf5821d09a630233294b4d12faff1b (patch) | |
| tree | 4683bc4b1bb5c47147d6234c41241f84f0507449 /src/libnm-core-impl/nm-setting-connection.c | |
| parent | 4bc688271732081f7e93ac77737645c2bb68a81c (diff) | |
| parent | 56928734cbcf1d3a02fae4f152a541df1b04e04a (diff) | |
Update upstream source from tag 'upstream/1.50.0'
Update to upstream version '1.50.0' with Debian dir 3e8ab0d456db6ba34def0fe144bdba6657c05393
Diffstat (limited to 'src/libnm-core-impl/nm-setting-connection.c')
| -rw-r--r-- | src/libnm-core-impl/nm-setting-connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnm-core-impl/nm-setting-connection.c b/src/libnm-core-impl/nm-setting-connection.c index b51cd46b..3298dce6 100644 --- a/src/libnm-core-impl/nm-setting-connection.c +++ b/src/libnm-core-impl/nm-setting-connection.c @@ -1379,13 +1379,13 @@ verify(NMSetting *setting, NMConnection *connection, GError **error) if (connection) goto after_interface_name; iface_type = NMU_IFACE_ANY; - } else if (NM_IN_STRSET(ovs_iface_type, "patch")) { + } else if (NM_IN_STRSET(ovs_iface_type, "patch", "dpdk")) { /* this interface type is internal to OVS. */ iface_type = NMU_IFACE_OVS; } else { /* This interface type also requires a netdev. We need to validate * for both OVS and KERNEL. */ - nm_assert(NM_IN_STRSET(ovs_iface_type, "internal", "system", "dpdk")); + nm_assert(NM_IN_STRSET(ovs_iface_type, "internal", "system")); iface_type = NMU_IFACE_OVS_AND_KERNEL; } } else |