From 58482a8feccc58db8d5a7eae9a004ce691e0c502 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Mon, 31 Oct 2016 10:08:30 +0100 Subject: [PATCH] team: fix wrong g_object_set() when updating connections Fixes: 16a6991b90de149555dad1bb187282e6bcbdeb9f https://bugzilla.redhat.com/show_bug.cgi?id=1390106 --- src/devices/team/nm-device-team.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/team/nm-device-team.c b/src/devices/team/nm-device-team.c index 11dcdaa9ec..802714c45f 100644 --- a/src/devices/team/nm-device-team.c +++ b/src/devices/team/nm-device-team.c @@ -234,7 +234,7 @@ update_connection (NMDevice *device, NMConnection *connection) priv->tdc = NULL; } - g_object_set (G_OBJECT (s_team), _get_config (self), NULL); + g_object_set (G_OBJECT (s_team), NM_SETTING_TEAM_CONFIG, _get_config (self), NULL); } /*****************************************************************************/