aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-session.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-08 00:22:36 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:10 +0800
commit578214584caa7805edca09b27e2306dc31d80fb6 (patch)
treedfa18882e01b362a721fd47bd901538bc5e3a9c4 /mail/e-mail-session.c
parent30fe010cffa6f290170147ea9a8b617d04fab39d (diff)
downloadgsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.gz
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.bz2
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.lz
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.xz
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.tar.zst
gsoc2013-evolution-578214584caa7805edca09b27e2306dc31d80fb6.zip
Whitespace and coding style cleanups.
Diffstat (limited to 'mail/e-mail-session.c')
-rw-r--r--mail/e-mail-session.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/mail/e-mail-session.c b/mail/e-mail-session.c
index f8ca413c08..43670a3e93 100644
--- a/mail/e-mail-session.c
+++ b/mail/e-mail-session.c
@@ -638,20 +638,27 @@ mail_session_get_password (CamelSession *session,
remember = config_service?config_service->save_passwd:FALSE;
- if (!config_service || (config_service && !config_service->get_password_canceled)) {
+ if (!config_service || (config_service &&
+ !config_service->get_password_canceled)) {
guint32 eflags;
gchar *title;
if (flags & CAMEL_SESSION_PASSPHRASE) {
if (account)
- title = g_strdup_printf (_("Enter Passphrase for %s"), account->name);
+ title = g_strdup_printf (
+ _("Enter Passphrase for %s"),
+ account->name);
else
- title = g_strdup (_("Enter Passphrase"));
+ title = g_strdup (
+ _("Enter Passphrase"));
} else {
if (account)
- title = g_strdup_printf (_("Enter Password for %s"), account->name);
+ title = g_strdup_printf (
+ _("Enter Password for %s"),
+ account->name);
else
- title = g_strdup (_("Enter Password"));
+ title = g_strdup (
+ _("Enter Password"));
}
if ((flags & CAMEL_SESSION_PASSWORD_STATIC) != 0)
eflags = E_PASSWORDS_REMEMBER_NEVER;