From 07a49b30af2dedd5faaa86ae05f06001f96c48d9 Mon Sep 17 00:00:00 2001 From: Francesco Giudici Date: Tue, 28 Nov 2017 10:41:56 +0100 Subject: [PATCH] libnm-core: team: use the correct name for teamd property 'balancing_interval' the teamd 'runner.tx_balancer.balancing_interval' property was wrongly set and searched as 'runner.tx_balancer.interval'. Fixed. Fixes: fc3b7d61e29a56106a0ecb55deb7fcdcf7d9b691 (cherry picked from commit ed2a1a153b0952de701e962e357ddc3ab31ed6f0) --- libnm-core/nm-setting-team.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnm-core/nm-setting-team.c b/libnm-core/nm-setting-team.c index 52e44cc17a..16068a425d 100644 --- a/libnm-core/nm-setting-team.c +++ b/libnm-core/nm-setting-team.c @@ -623,7 +623,7 @@ static const _NMUtilsTeamPropertyKeys _prop_to_keys[LAST_PROP] = { [PROP_RUNNER_HWADDR_POLICY] = { "runner", "hwaddr_policy", NULL, 0 }, [PROP_RUNNER_TX_HASH] = { "runner", "tx_hash", NULL, 0 }, [PROP_RUNNER_TX_BALANCER] = { "runner", "tx_balancer", "name", 0 }, - [PROP_RUNNER_TX_BALANCER_INTERVAL] = { "runner", "tx_balancer", "interval", + [PROP_RUNNER_TX_BALANCER_INTERVAL] = { "runner", "tx_balancer", "balancing_interval", NM_SETTING_TEAM_RUNNER_TX_BALANCER_INTERVAL_DEFAULT }, [PROP_RUNNER_ACTIVE] = { "runner", "active", NULL, 0 }, [PROP_RUNNER_FAST_RATE] = { "runner", "fast_rate", NULL, 0 },