summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-team.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2013-11-13 11:05:02 -0600
committerDan Williams <dcbw@redhat.com>2013-12-05 16:07:24 -0600
commit5f15409684259f32b42e35dc097453a6ddb329fa (patch)
tree958730d861dfb3c304a62d85189d8962402efc8e /libnm-util/nm-setting-team.c
parent5f32b8588ec4f70ebff88c9f7803353a1894e6c3 (diff)
downloadNetworkManager-5f15409684259f32b42e35dc097453a6ddb329fa.tar.gz
libnm-util: add INFERRABLE flag and remove CANDIDATE
INFERRABLE means the opposite of CANDIDATE; a property which NetworkManager can read ("infer") from the system or the kernel when generating connections. CANDIDATE isn't a great name and thus dies.
Diffstat (limited to 'libnm-util/nm-setting-team.c')
-rw-r--r--libnm-util/nm-setting-team.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnm-util/nm-setting-team.c b/libnm-util/nm-setting-team.c
index 35d4ef719e..06dd064108 100644
--- a/libnm-util/nm-setting-team.c
+++ b/libnm-util/nm-setting-team.c
@@ -238,7 +238,7 @@ nm_setting_team_class_init (NMSettingTeamClass *setting_class)
"InterfaceName",
"The name of the virtual in-kernel team network interface",
NULL,
- G_PARAM_READWRITE));
+ G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE));
/**
* NMSettingTeam:config:
@@ -259,5 +259,5 @@ nm_setting_team_class_init (NMSettingTeamClass *setting_class)
"teamd. If not specified, the default configuration is used. "
"See man teamd.conf for the format details.",
NULL,
- G_PARAM_READWRITE));
+ G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE));
}