~ubuntu-branches/ubuntu/oneiric/network-manager-applet/oneiric

« back to all changes in this revision

Viewing changes to src/connection-editor/ce-page.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-02-15 09:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: james.westby@ubuntu.com-20110215095322-zvwr9azwbwoa0lg8
Tags: upstream-0.8.3+git.20110203t003354.9bf0b98
ImportĀ upstreamĀ versionĀ 0.8.3+git.20110203t003354.9bf0b98

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
        g_assert (setting_name);
201
201
        g_assert (secrets);
202
202
 
203
 
        /* Update the connection with the new secrets */
204
203
        setting_hash = g_hash_table_lookup (secrets, setting_name);
205
204
        if (!setting_hash) {
206
205
                /* Success, no secrets */
208
207
                return;
209
208
        }
210
209
 
 
210
        /* Update the connection with the new secrets */
211
211
        if (nm_connection_update_secrets (self->connection,
212
212
                                          setting_name,
213
 
                                          setting_hash,
 
213
                                          secrets,
214
214
                                          &update_error)) {
215
215
                /* Success */
216
216
                emit_initialized (self, NULL);