aboutsummaryrefslogtreecommitdiff
path: root/src/procmsg.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-10 09:28:05 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-10 09:28:05 +0000
commit2ce75a37bcca6a5c960c1fb56b530c24de5a8492 (patch)
tree0c67890575d8e869cef9e8e67e14b12e7959b0d2 /src/procmsg.c
parent7ac4bf2db5d09d02f9e0e7ca4da691b7bd5ff0d9 (diff)
fixed Turkish locale problem.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@333 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/procmsg.c')
-rw-r--r--src/procmsg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/procmsg.c b/src/procmsg.c
index b852b3ce..24453368 100644
--- a/src/procmsg.c
+++ b/src/procmsg.c
@@ -1539,8 +1539,9 @@ static gint func_name(gconstpointer a, gconstpointer b) \
if (!msginfo2->var_name) \
return -1; \
\
- return strcasecmp(msginfo1->var_name, msginfo2->var_name) * \
- (cmp_func_sort_type == SORT_ASCENDING ? 1 : -1); \
+ return g_ascii_strcasecmp \
+ (msginfo1->var_name, msginfo2->var_name) * \
+ (cmp_func_sort_type == SORT_ASCENDING ? 1 : -1);\
}
CMP_FUNC_DEF(procmsg_cmp_by_from, fromname)