diff options
author | Milan Crha <mcrha@redhat.com> | 2011-03-02 22:25:38 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-03-02 22:25:38 +0800 |
commit | c0635e17d9f13c1f923067e6a2a13768ba6944f6 (patch) | |
tree | a44b691f09fa015cb8f7c4918b76537bd95a19d7 /mail/message-list.c | |
parent | 2533e52b8cf543eed874d220a3f039eebe67253e (diff) | |
download | gsoc2013-evolution-c0635e17d9f13c1f923067e6a2a13768ba6944f6.tar.gz gsoc2013-evolution-c0635e17d9f13c1f923067e6a2a13768ba6944f6.tar.zst gsoc2013-evolution-c0635e17d9f13c1f923067e6a2a13768ba6944f6.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.c | 2 |
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; } |