diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-01-11 00:58:06 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-01-11 00:58:06 +0800 |
commit | 4f21ad147f4358165fab39848d872ab8d465d17d (patch) | |
tree | f5542585f879defc991f15713fe0852907497322 | |
parent | a075c12e0bc54fd00467f4ed4450d18adf2cee8b (diff) | |
download | gsoc2013-evolution-4f21ad147f4358165fab39848d872ab8d465d17d.tar.gz gsoc2013-evolution-4f21ad147f4358165fab39848d872ab8d465d17d.tar.zst gsoc2013-evolution-4f21ad147f4358165fab39848d872ab8d465d17d.zip |
corrected api arguments
svn path=/trunk/; revision=28330
-rw-r--r-- | plugins/exchange-account-setup/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-account-setup/exchange-ask-password.c | 2 |
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); |