aboutsummaryrefslogtreecommitdiffstats
path: root/smime/lib
diff options
context:
space:
mode:
authorVeerapuram Varadhan <vvaradan@src.gnome.org>2006-07-31 19:08:17 +0800
committerVeerapuram Varadhan <vvaradan@src.gnome.org>2006-07-31 19:08:17 +0800
commit261d697aed9f26fe6ffbf192d1e24714b69a4d47 (patch)
tree92a4baeffdd877f5f3695af90eb240b325056971 /smime/lib
parent3f74605b7a7db922972a7fbfee179888daafa061 (diff)
downloadgsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar.gz
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar.bz2
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar.lz
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar.xz
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.tar.zst
gsoc2013-evolution-261d697aed9f26fe6ffbf192d1e24714b69a4d47.zip
** Fixes #334848
* lib/e-pkcs12.c (prompt_for_password): * gui/component.c (smime_pk11_passwd), (smime_pk11_change_passwd): Do not pass NULL for the domain parameter of e_passwords_ask_password. svn path=/trunk/; revision=32451
Diffstat (limited to 'smime/lib')
-rw-r--r--smime/lib/e-pkcs12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c
index 55a5fe0cb4..6830b69df3 100644
--- a/smime/lib/e-pkcs12.c
+++ b/smime/lib/e-pkcs12.c
@@ -219,7 +219,7 @@ prompt_for_password (char *title, char *prompt, SECItem *pwd)
{
char *passwd;
- passwd = e_passwords_ask_password (title, NULL, NULL, prompt,
+ passwd = e_passwords_ask_password (title, "SMIME-PKCS12", NULL, prompt,
E_PASSWORDS_REMEMBER_NEVER|E_PASSWORDS_SECRET, NULL,
NULL);