aboutsummaryrefslogtreecommitdiffstats
path: root/mail/ChangeLog
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-09-28 18:55:20 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-09-28 18:55:20 +0800
commitdb5aeac89568d5d0178c7ab6becfe15e3babfb54 (patch)
treeda223f194cfb17b3faece638ef9d9a710ddd9d5c /mail/ChangeLog
parentd1062b7afa165532b293581026190a36c27b2616 (diff)
downloadgsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar.gz
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar.bz2
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar.lz
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar.xz
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.tar.zst
gsoc2013-evolution-db5aeac89568d5d0178c7ab6becfe15e3babfb54.zip
Use g_ascii_strcasecmp() instead of strcasecmp(). We are comparing to
2005-09-28 Tor Lillqvist <tml@novell.com> * importers/netscape-importer.c (netscape_get_boolean): Use g_ascii_strcasecmp() instead of strcasecmp(). We are comparing to literal ASCII strings in these cases, so just casefolding ASCII is enough. Also better for portability. svn path=/trunk/; revision=30401
Diffstat (limited to 'mail/ChangeLog')
-rw-r--r--mail/ChangeLog9
1 files changed, 5 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3f73d8e3c2..330e466e0a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -2,10 +2,11 @@
* em-composer-utils.c (reply_get_composer, get_reply_list,
post_reply_to_message)
- * em-folder-view.c (emfv_format_link_clicked): Use
- g_ascii_strncasecmp() instead of strncasecmp(). We are comparing
- to literal ASCII strings, so just casefolding ASCII is
- enough. Also better for portability.
+ * em-folder-view.c (emfv_format_link_clicked)
+ * importers/netscape-importer.c (netscape_get_boolean): Use
+ g_ascii_str(n)casecmp() instead of str(n)casecmp(). We are
+ comparing to literal ASCII strings in these cases, so just
+ casefolding ASCII is enough. Also better for portability.
* em-format-html-display.c
* message-list.c: Define localtime_r() for Win32 using localtime()