diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2006-05-10 16:25:25 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2006-05-10 16:25:25 +0800 |
commit | ed1fa5121bcbcf072e51c82f64c472d2d4d33ec5 (patch) | |
tree | c13fb0f7b39afe08708672198fa4a8fb3580c721 /plugins | |
parent | 4b4abd30438c497ec12073b1775fd37ccc34cb83 (diff) | |
download | gsoc2013-evolution-ed1fa5121bcbcf072e51c82f64c472d2d4d33ec5.tar.gz gsoc2013-evolution-ed1fa5121bcbcf072e51c82f64c472d2d4d33ec5.tar.zst gsoc2013-evolution-ed1fa5121bcbcf072e51c82f64c472d2d4d33ec5.zip |
Not displaying error message on cancel operation. Fixes #332131.
svn path=/trunk/; revision=31966
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index fdc4b15a99..76695618a0 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,9 @@ +2006-05-10 Sushma Rai <rsushma@novell.com> + + * exchange-account-setup.c (owa_authenticate_user): Display error + message only in case of authentication failure and not on cancelling + authentication operation. Fixes #332131 + 2006-04-19 Sushma Rai <rsushma@novell.com> * exchange-contacts.c (e_exchange_contacts_commit): Setting the diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index ce63d1ef06..32b66f9e10 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -464,8 +464,9 @@ owa_authenticate_user(GtkWidget *button, EConfig *config) valid = e2k_validate_user (owa_url, &url->user, exchange_params, &remember_password, &result); - if (!valid) + if (!valid && result != E2K_AUTOCONFIG_CANCELLED) print_error (owa_url, result); + camel_url_set_host (url, valid ? exchange_params->host : ""); if (valid) { |