mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-22 23:10:18 +01:00
libnm-core: fix NMSettingDcb
This got broken in the libnm-props changes (specifically 22b92a75).
This commit is contained in:
parent
6325c596c0
commit
b4bebbd02d
1 changed files with 2 additions and 2 deletions
|
|
@ -783,7 +783,7 @@ _nm_setting_dcb_uint_array_to_dbus (const GValue *prop_value,
|
|||
{
|
||||
GArray *src = g_value_get_boxed (prop_value);
|
||||
|
||||
take_uint_array (dbus_value, (guint *) src->data, src->len);
|
||||
set_uint_array (dbus_value, (guint *) src->data, src->len);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -792,7 +792,7 @@ _nm_setting_dcb_uint_array_from_dbus (const GValue *dbus_value,
|
|||
{
|
||||
GArray *src = g_value_get_boxed (dbus_value);
|
||||
|
||||
set_uint_array (prop_value, (guint *) src->data, src->len);
|
||||
take_uint_array (prop_value, (guint *) src->data, src->len);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue