diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-09-26 09:55:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-26 21:45:55 +0800 |
commit | 6aa953cdf3ce6dbdb38be3942213d015eb01d4b0 (patch) | |
tree | 158bb9f7853c3307e65b7012d8558f94c3832e12 /mail | |
parent | 9773f0a3b8ed4a058d4cd28d0bc4060dbe43da19 (diff) | |
download | gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar.gz gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar.bz2 gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar.lz gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar.xz gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.tar.zst gsoc2013-evolution-6aa953cdf3ce6dbdb38be3942213d015eb01d4b0.zip |
Adapt to CamelURL API changes.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-session.c | 2 | ||||
-rw-r--r-- | mail/em-account-editor.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/e-mail-session.c b/mail/e-mail-session.c index 7ed8720e75..e1820501af 100644 --- a/mail/e-mail-session.c +++ b/mail/e-mail-session.c @@ -521,7 +521,7 @@ mail_session_make_key (CamelService *service, if (service != NULL) key = camel_url_to_string ( camel_service_get_camel_url (service), - CAMEL_URL_HIDE_PASSWORD | CAMEL_URL_HIDE_PARAMS); + CAMEL_URL_HIDE_PARAMS); else key = g_strdup (item); diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index b9589d51c3..5f2289ab58 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -4045,7 +4045,7 @@ forget_password_if_needed (EAccount *original_account, if (!url) return; - url_str = camel_url_to_string (url, CAMEL_URL_HIDE_PASSWORD | CAMEL_URL_HIDE_PARAMS); + url_str = camel_url_to_string (url, CAMEL_URL_HIDE_PARAMS); if (url_str) e_passwords_forget_password (NULL, url_str); |