aboutsummaryrefslogtreecommitdiffstats
path: root/smime/gui
diff options
context:
space:
mode:
authorMilan Crha <mcrha@src.gnome.org>2007-08-31 14:09:09 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-08-31 14:09:09 +0800
commitcc1f27817bb22842e02a8f1ce968c2b2ea0d6803 (patch)
treeea4078e74f6cf98e8f3928c8f5436b8411b0d3a8 /smime/gui
parente7d6ad6d83acd3aba0dc11d4955339b20ccc8cf3 (diff)
downloadgsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar.gz
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar.bz2
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar.lz
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar.xz
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.tar.zst
gsoc2013-evolution-cc1f27817bb22842e02a8f1ce968c2b2ea0d6803.zip
2007-08-31 mcrha Fix for bug #378759
svn path=/trunk/; revision=34144
Diffstat (limited to 'smime/gui')
-rw-r--r--smime/gui/component.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smime/gui/component.c b/smime/gui/component.c
index 5fcd6c0478..5a8438dfd7 100644
--- a/smime/gui/component.c
+++ b/smime/gui/component.c
@@ -47,7 +47,7 @@ smime_pk11_passwd (ECertDB *db, PK11SlotInfo* slot, gboolean retry, char **passw
prompt = g_strdup_printf (_("Enter the password for `%s'"), slot_name);
g_free (slot_name);
- *passwd = e_passwords_ask_password (_("Enter password"), "SMIME-PKCS11", NULL,
+ *passwd = e_passwords_ask_password (_("Enter password"), "SMIME-PKCS11", "",
prompt,
E_PASSWORDS_REMEMBER_NEVER|E_PASSWORDS_SECRET, NULL,
NULL);
@@ -69,7 +69,7 @@ smime_pk11_change_passwd (ECertDB *db, char **old_passwd, char **passwd, gpointe
/* we're setting the password initially */
prompt = _("Enter new password for certificate database");
- *passwd = e_passwords_ask_password (_("Enter new password"), "SMIME-PKCS11", NULL,
+ *passwd = e_passwords_ask_password (_("Enter new password"), "SMIME-PKCS11", "",
prompt,
E_PASSWORDS_REMEMBER_NEVER|E_PASSWORDS_SECRET, NULL,
NULL);