aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-session.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-session.c')
-rw-r--r--camel/camel-session.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/camel/camel-session.c b/camel/camel-session.c
index c4634b45dd..1d45e9661b 100644
--- a/camel/camel-session.c
+++ b/camel/camel-session.c
@@ -584,6 +584,7 @@ camel_session_get_storage_path (CamelSession *session, CamelService *service,
* camel_session_get_password:
* @session: session object
* @prompt: prompt to provide to user
+ * @reprompt: TRUE if the prompt should force a reprompt
* @secret: whether or not the data is secret (eg, a password, as opposed
* to a smartcard response)
* @service: the service this query is being made by
@@ -607,14 +608,15 @@ camel_session_get_storage_path (CamelSession *session, CamelService *service,
**/
char *
camel_session_get_password (CamelSession *session, const char *prompt,
- gboolean secret, CamelService *service,
- const char *item, CamelException *ex)
+ gboolean reprompt, gboolean secret,
+ CamelService *service, const char *item,
+ CamelException *ex)
{
g_return_val_if_fail (CAMEL_IS_SESSION (session), NULL);
g_return_val_if_fail (prompt != NULL, NULL);
g_return_val_if_fail (item != NULL, NULL);
-
- return CS_CLASS (session)->get_password (session, prompt, secret, service, item, ex);
+
+ return CS_CLASS (session)->get_password (session, prompt, reprompt, secret, service, item, ex);
}
vulnerabilityjunovitch2016-06-102-0/+20 * Update to 1.1.5 release.ale2016-05-112-6/+5 * mail/roundcube: chase PHP Warning: array_merge(): Argument #1 is not an arraygahr2016-03-012-0/+12 * Update to 1.1.4 release.ale2016-01-022-4/+3 * Fix session handling when php-suhosin session encryption is not enabled.ale2015-09-232-22/+51 * Update to 1.1.3 release.ale2015-09-192-3/+3 * Update to 1.1.2 release.ale2015-07-082-3/+3 * mail/roundcube: add CPE inforobak2015-04-181-0/+4 * Update to 1.1.1 release.ale2015-04-012-3/+3 * Update to 1.1.0 release.ale2015-02-204-24/+25 * Update to 1.0.5 release.ale2015-01-302-3/+3 * Update to 1.0.4 release.ale2014-12-302-3/+3 * Update to 1.0.3 release.ale2014-10-01