aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-03-02 22:25:38 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:40 +0800
commit3a586057909181bc54ac6581386b065e06f5cab9 (patch)
tree99d4b9470c2e96724ca22f49031072cf5046a875 /mail/message-list.c
parent498337e8524e1acf9f9471fc8c54038341035911 (diff)
downloadgsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar.gz
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar.bz2
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar.lz
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar.xz
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.tar.zst
gsoc2013-evolution-3a586057909181bc54ac6581386b065e06f5cab9.zip
Bug #643635 - Typo in the code from commit for bug #434972
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 148bd616ae..64b530d798 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -491,7 +491,7 @@ get_normalised_string (MessageList *message_list, CamelMessageInfo *info, gint c
if (g_ascii_strncasecmp ((gchar *) subject, "Re:", 3) == 0) {
found_re = TRUE;
subject += 3;
- } else if (g_ascii_strncasecmp ((gchar *) subject, "Re :", 4)) {
+ } else if (g_ascii_strncasecmp ((gchar *) subject, "Re :", 4) == 0) {
found_re = TRUE;
subject += 4;
}