diff options
author | Milan Crha <mcrha@redhat.com> | 2011-01-19 20:10:03 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:20 +0800 |
commit | 700e263817c36ccf88a6de523326d2f1bc1b4003 (patch) | |
tree | 5ae0bc30e8d95b11b91c0452c91155521d32e268 /mail | |
parent | 2e68a6a74d19d4cda574fd09fd2cbf951a21916d (diff) | |
download | gsoc2013-evolution-700e263817c36ccf88a6de523326d2f1bc1b4003.tar.gz gsoc2013-evolution-700e263817c36ccf88a6de523326d2f1bc1b4003.tar.zst gsoc2013-evolution-700e263817c36ccf88a6de523326d2f1bc1b4003.zip |
Bug #604534 - Evolution "ignores" key-usage info in certificates
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-account-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 7a2dc3f6fa..3c373f444c 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -1219,7 +1219,7 @@ smime_encrypt_key_select (GtkWidget *button, EMAccountEditor *emae) EMAccountEditorPrivate *priv = emae->priv; GtkWidget *w; - w = e_cert_selector_new (E_CERT_SELECTOR_SIGNER, gtk_entry_get_text (priv->smime_encrypt_key)); + w = e_cert_selector_new (E_CERT_SELECTOR_RECIPIENT, gtk_entry_get_text (priv->smime_encrypt_key)); gtk_window_set_modal ((GtkWindow *)w, TRUE); gtk_window_set_transient_for ((GtkWindow *)w, (GtkWindow *)gtk_widget_get_toplevel (button)); g_signal_connect (w, "selected", G_CALLBACK(smime_encrypt_key_selected), emae); |