summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-pppoe.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2013-11-19 15:00:21 -0600
committerDan Williams <dcbw@redhat.com>2013-12-02 15:26:12 -0600
commit983079cd5905ad7c696fae0ccc5d863ad1d4b76b (patch)
treec31904f842271d9d248473a0ccd740b6575557d6 /libnm-util/nm-setting-pppoe.c
parent1b0f832c7f7c02d29b9421005c78d52ad6a47905 (diff)
downloadNetworkManager-983079cd5905ad7c696fae0ccc5d863ad1d4b76b.tar.gz
libnm-util: remove usage of NM_SETTING_PARAM_SERIALIZE
The only property that is not serializes is each settings' 'name' property, so the flag serves no purpose.
Diffstat (limited to 'libnm-util/nm-setting-pppoe.c')
-rw-r--r--libnm-util/nm-setting-pppoe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libnm-util/nm-setting-pppoe.c b/libnm-util/nm-setting-pppoe.c
index af718ffa61..2e33f711da 100644
--- a/libnm-util/nm-setting-pppoe.c
+++ b/libnm-util/nm-setting-pppoe.c
@@ -309,7 +309,7 @@ nm_setting_pppoe_class_init (NMSettingPPPOEClass *setting_class)
"access concentrators or a specific service is known "
"to be required.",
NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE));
+ G_PARAM_READWRITE));
/**
* NMSettingPPPOE:username:
@@ -322,7 +322,7 @@ nm_setting_pppoe_class_init (NMSettingPPPOEClass *setting_class)
"Username",
"Username used to authenticate with the PPPoE service.",
NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE));
+ G_PARAM_READWRITE));
/**
* NMSettingPPPOE:password:
@@ -335,7 +335,7 @@ nm_setting_pppoe_class_init (NMSettingPPPOEClass *setting_class)
"Password",
"Password used to authenticate with the PPPoE service.",
NULL,
- G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE | NM_SETTING_PARAM_SECRET));
+ G_PARAM_READWRITE | NM_SETTING_PARAM_SECRET));
/**
* NMSettingPPPOE:password-flags:
@@ -349,5 +349,5 @@ nm_setting_pppoe_class_init (NMSettingPPPOEClass *setting_class)
NM_SETTING_SECRET_FLAG_NONE,
NM_SETTING_SECRET_FLAGS_ALL,
NM_SETTING_SECRET_FLAG_NONE,
- G_PARAM_READWRITE | NM_SETTING_PARAM_SERIALIZE));
+ G_PARAM_READWRITE));
}