diff options
Diffstat (limited to 'system-settings/plugins/keyfile/nm-keyfile-connection.c')
-rw-r--r-- | system-settings/plugins/keyfile/nm-keyfile-connection.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/system-settings/plugins/keyfile/nm-keyfile-connection.c b/system-settings/plugins/keyfile/nm-keyfile-connection.c index b64f2c9146..3cdfe27d11 100644 --- a/system-settings/plugins/keyfile/nm-keyfile-connection.c +++ b/system-settings/plugins/keyfile/nm-keyfile-connection.c @@ -55,14 +55,13 @@ get_id (NMExportedConnection *exported) static gboolean update (NMExportedConnection *exported, GHashTable *new_settings, - GError **err) + GError **error) { gboolean success; - success = NM_EXPORTED_CONNECTION_CLASS (nm_keyfile_connection_parent_class)->update (exported, new_settings, err); - + success = NM_EXPORTED_CONNECTION_CLASS (nm_keyfile_connection_parent_class)->update (exported, new_settings, error); if (success) - write_connection (nm_exported_connection_get_connection (exported)); + success = write_connection (nm_exported_connection_get_connection (exported), error); return success; } |