From 791bca1dccf2e0c1edaa20c6ebd6f263a310c306 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Sat, 2 Jul 2016 11:33:38 +0200 Subject: [PATCH] team: request actual configuration to teamd Request the actual configuration when reading it from teamd. The actual configuration, differently from the normal one, doesn't contain non-active team ports. --- 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 6d2560493f..bef2e85a5d 100644 --- a/src/devices/team/nm-device-team.c +++ b/src/devices/team/nm-device-team.c @@ -161,7 +161,7 @@ teamd_read_config (NMDevice *device) int err; if (priv->tdc) { - err = teamdctl_config_get_raw_direct (priv->tdc, &config); + err = teamdctl_config_actual_get_raw_direct (priv->tdc, &config); if (err) return FALSE; }