aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/itip-formatter/itip-formatter.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-18 02:46:17 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-18 02:46:17 +0800
commit2d132354735010e3e97270463f7eb52194e285e8 (patch)
tree773e12c189549cc27b59dabf404b550ec4e993ad /plugins/itip-formatter/itip-formatter.c
parent9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff (diff)
downloadgsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar.gz
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar.bz2
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar.lz
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar.xz
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.tar.zst
gsoc2013-evolution-2d132354735010e3e97270463f7eb52194e285e8.zip
Use g_ascii_strcasecmp() instead of g_strcasecmp().
2005-12-17 Tor Lillqvist <tml@novell.com> * itip-formatter.c: Use g_ascii_strcasecmp() instead of g_strcasecmp(). svn path=/trunk/; revision=30845
Diffstat (limited to 'plugins/itip-formatter/itip-formatter.c')
-rw-r--r--plugins/itip-formatter/itip-formatter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index 085b400d9c..ad31d50571 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -605,7 +605,7 @@ find_attendee (icalcomponent *ical_comp, const char *address)
text = g_strdup (itip_strip_mailto (attendee));
text = g_strstrip (text);
- if (!g_strcasecmp (address, text)) {
+ if (!g_ascii_strcasecmp (address, text)) {
g_free (text);
break;
}
@@ -1452,9 +1452,9 @@ view_response_cb (GtkWidget *widget, ItipViewResponse response, gpointer data)
/* We do this to ensure there is at most one
* attendee in the response */
- if (found || g_strcasecmp (pitip->my_address, text))
+ if (found || g_ascii_strcasecmp (pitip->my_address, text))
list = g_slist_prepend (list, prop);
- else if (!g_strcasecmp (pitip->my_address, text))
+ else if (!g_ascii_strcasecmp (pitip->my_address, text))
found = TRUE;
g_free (text);
}