aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/process-meeting.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-18 02:45:07 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-18 02:45:07 +0800
commit9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff (patch)
tree8f63d0f411c9060e1bc996cbcb300f2a085a6754 /plugins/groupwise-features/process-meeting.c
parentdf6c612eaa2e2f1b1b691d1f56d7079c9700a826 (diff)
downloadgsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.gz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.bz2
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.lz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.xz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.zst
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.zip
junk-settings.c proxy-login.c proxy.c Construct glade file name at
2005-12-17 Tor Lillqvist <tml@novell.com> * junk-settings.c * proxy-login.c * proxy.c * share-folder.c: Construct glade file name at run-time. * process-meeting.c (find_attendee): Use g_ascii_strcasecmp() instead of g_strcasecmp(). svn path=/trunk/; revision=30844
Diffstat (limited to 'plugins/groupwise-features/process-meeting.c')
-rw-r--r--plugins/groupwise-features/process-meeting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/groupwise-features/process-meeting.c b/plugins/groupwise-features/process-meeting.c
index 424d8edeba..91f0384ee7 100644
--- a/plugins/groupwise-features/process-meeting.c
+++ b/plugins/groupwise-features/process-meeting.c
@@ -152,7 +152,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;
}