aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/exchange-account-setup/ChangeLog5
-rw-r--r--plugins/exchange-account-setup/exchange-ask-password.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/exchange-account-setup/ChangeLog b/plugins/exchange-account-setup/ChangeLog
index 7c5b15895f..3e663254be 100644
--- a/plugins/exchange-account-setup/ChangeLog
+++ b/plugins/exchange-account-setup/ChangeLog
@@ -1,4 +1,9 @@
2005-01-10 Sushma Rai <rsushma@novell.com>
+
+ * exchange-ask-password.c: (validate_exchange_user):
+ Corrected argument order.
+
+2005-01-10 Sushma Rai <rsushma@novell.com>
* org-gnome-exchange-account-setup.eplug.in: Added plugin to read
OWA url entry to the account set up druid.
diff --git a/plugins/exchange-account-setup/exchange-ask-password.c b/plugins/exchange-account-setup/exchange-ask-password.c
index 635feb4966..31e12e98a4 100644
--- a/plugins/exchange-account-setup/exchange-ask-password.c
+++ b/plugins/exchange-account-setup/exchange-ask-password.c
@@ -65,7 +65,7 @@ validate_exchange_user (EConfig *ec, const char *pageid, void *data)
return FALSE; /* This should never happen */
}
- valid = camel_provider_validate_user (owa_entry_text, provider, url, NULL);
+ valid = camel_provider_validate_user (provider, url, owa_entry_text, NULL);
if (valid) {
count ++;
url_string = camel_url_to_string (url, 0);