diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-12-04 23:42:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2006-12-04 23:42:53 +0800 |
commit | 5e16059870d4b387fe08bec22b2634c151182c83 (patch) | |
tree | 40c871b21268a4c4558778214db680ca6184d00e /plugins | |
parent | 34201761f98113612d30f1810de840fd344f748d (diff) | |
download | gsoc2013-evolution-5e16059870d4b387fe08bec22b2634c151182c83.tar.gz gsoc2013-evolution-5e16059870d4b387fe08bec22b2634c151182c83.tar.zst gsoc2013-evolution-5e16059870d4b387fe08bec22b2634c151182c83.zip |
Fixes bug #357970
2006-12-04 Matthew Barnes <mbarnes@redhat.com>
Fixes bug #357970
* exchange-config-listener.c: Don't call deprecated GLib / GDK
functions.
svn path=/trunk/; revision=33047
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-config-listener.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 41be77e111..66bec04083 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,10 @@ +2006-12-04 Matthew Barnes <mbarnes@redhat.com> + + Fixes bug #357970 + + * exchange-config-listener.c: Don't call deprecated GLib / GDK + functions. + 2006-10-23 Priit Laes <amd@store20.com> * org-gnome-default-source.eplug.xml: Fixed typo in plugin diff --git a/plugins/exchange-operations/exchange-config-listener.c b/plugins/exchange-operations/exchange-config-listener.c index 7dc2f04879..5466c9b82d 100644 --- a/plugins/exchange-operations/exchange-config-listener.c +++ b/plugins/exchange-operations/exchange-config-listener.c @@ -725,7 +725,7 @@ exchange_config_listener_authenticate (ExchangeConfigListener *ex_conf_listener, } g_free (title); } - else if (remember_password && !g_strcasecmp (remember_password, "false")) { + else if (remember_password && !g_ascii_strcasecmp (remember_password, "false")) { /* get_password returns the password cached but user has not * selected remember password option, forget this password * whis is stored temporarily by e2k_validate_user(), to avoid |