diff options
author | Dan Williams <dcbw@redhat.com> | 2014-10-15 10:39:02 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2014-10-15 10:43:02 -0500 |
commit | 72208ef6685392b59b9a55b463409f604bb02ad8 (patch) | |
tree | 11e06392b705245bd85df0bb67cf3d2c9eae14ae /src/settings/plugins/keyfile/utils.c | |
parent | b69143b5085c58e51ab8077ee5cbe6fafe73e041 (diff) | |
download | NetworkManager-dcbw/keyfile-enum-flags.tar.gz |
keyfile: fix handling of enum/flags properties after fcfb4b40dcbw/keyfile-enum-flags
When some properties got converted to G_TYPE_ENUM and G_TYPE_FLAGS
the keyfile plugin was not updated to handle these types.
Diffstat (limited to 'src/settings/plugins/keyfile/utils.c')
-rw-r--r-- | src/settings/plugins/keyfile/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/settings/plugins/keyfile/utils.c b/src/settings/plugins/keyfile/utils.c index e2bfc38c15..844d9c08c9 100644 --- a/src/settings/plugins/keyfile/utils.c +++ b/src/settings/plugins/keyfile/utils.c @@ -229,6 +229,7 @@ nm_keyfile_plugin_kf_set_##stype (GKeyFile *kf, \ DEFINE_KF_WRAPPER(string, gchar*, const gchar*); DEFINE_KF_WRAPPER(integer, gint, gint); +DEFINE_KF_WRAPPER(uint64, guint64, guint64); DEFINE_KF_WRAPPER(boolean, gboolean, gboolean); DEFINE_KF_WRAPPER(value, gchar*, const gchar*); |