mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-01 21:10:12 +01:00
merge: fix some nmtui password issues (bgo #733002)
This commit is contained in:
commit
899df02e4c
2 changed files with 20 additions and 2 deletions
|
|
@ -171,7 +171,19 @@ got_secrets (NMRemoteConnection *connection,
|
|||
GError *error,
|
||||
gpointer op)
|
||||
{
|
||||
nmt_sync_op_complete_pointer (op, secrets, error);
|
||||
GHashTable *copy = NULL, *setting;
|
||||
GHashTableIter iter;
|
||||
const char *name;
|
||||
|
||||
if (secrets) {
|
||||
/* 'secrets' is owned by the caller so we must copy it */
|
||||
copy = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify) g_hash_table_destroy);
|
||||
g_hash_table_iter_init (&iter, secrets);
|
||||
while (g_hash_table_iter_next (&iter, (gpointer) &name, (gpointer) &setting))
|
||||
g_hash_table_insert (copy, g_strdup (name), nm_utils_gvalue_hash_dup (setting));
|
||||
}
|
||||
|
||||
nmt_sync_op_complete_pointer (op, copy, error);
|
||||
}
|
||||
|
||||
static NMConnection *
|
||||
|
|
@ -196,8 +208,10 @@ build_edit_connection (NMConnection *orig_connection)
|
|||
setting_name, got_secrets, &op);
|
||||
/* FIXME: error handling */
|
||||
secrets = nmt_sync_op_wait_pointer (&op, NULL);
|
||||
if (secrets)
|
||||
if (secrets) {
|
||||
(void) nm_connection_update_secrets (edit_connection, setting_name, secrets, NULL);
|
||||
g_hash_table_unref (secrets);
|
||||
}
|
||||
}
|
||||
g_hash_table_unref (settings);
|
||||
|
||||
|
|
|
|||
|
|
@ -156,6 +156,10 @@ nmt_password_fields_constructed (GObject *object)
|
|||
} else
|
||||
g_clear_object (&priv->show_password);
|
||||
|
||||
g_object_bind_property (priv->entry, "text",
|
||||
object, "password",
|
||||
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
|
||||
|
||||
G_OBJECT_CLASS (nmt_password_fields_parent_class)->constructed (object);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue