aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-itip-control.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-11-25 12:12:04 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-11-25 12:12:04 +0800
commitd232a36141d0d10bba27d4e9816007c7ab5ae6c0 (patch)
tree51c2ac2bbae30e75639a9c0c0e4358c1acc78a4b /calendar/gui/e-itip-control.c
parent72ac59b437d531eadecef28bade47134bc1b75e6 (diff)
downloadgsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar.gz
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar.bz2
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar.lz
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar.xz
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.tar.zst
gsoc2013-evolution-d232a36141d0d10bba27d4e9816007c7ab5ae6c0.zip
gui/e-itip-control.c Use g_ascii_strcasecmp() instead of strcasecmp() for
2005-11-25 Tor Lillqvist <tml@novell.com> * gui/e-itip-control.c * gui/itip-utils.c: Use g_ascii_strcasecmp() instead of strcasecmp() for portability. svn path=/trunk/; revision=30665
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r--calendar/gui/e-itip-control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index be4f3e3f61..99c42a25cb 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -639,7 +639,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;
}
@@ -2499,7 +2499,7 @@ ok_clicked_cb (GtkWidget *widget, gpointer data)
text = g_strdup (itip_strip_mailto (attendee));
text = g_strstrip (text);
- if (g_strcasecmp (priv->my_address, text))
+ if (g_ascii_strcasecmp (priv->my_address, text))
list = g_slist_prepend (list, prop);
g_free (text);
}