From 99d492b8284fa467f2b8ad3e6b637e10258d1cc2 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 4 Jul 2011 09:55:30 -0400 Subject: Adapt to CamelSession and e-passwords changes. --- mail/em-account-editor.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'mail/em-account-editor.c') diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index c6bef76187..867a8378dc 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -3838,19 +3838,14 @@ forget_password_if_needed (EAccount *original_account, EAccount *modified_accoun (orig_url && !modif_url)) { CamelURL *url; gchar *url_str; - const gchar *auth_domain; url = camel_url_new (orig_url, NULL); if (!url) return; - auth_domain = camel_url_get_param (url, "auth-domain"); - if (!auth_domain) - auth_domain = "Mail"; - url_str = camel_url_to_string (url, CAMEL_URL_HIDE_PASSWORD | CAMEL_URL_HIDE_PARAMS); if (url_str) - e_passwords_forget_password (auth_domain, url_str); + e_passwords_forget_password (NULL, url_str); g_free (url_str); camel_url_free (url); -- cgit