aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Jacob <jjohnny@src.gnome.org>2008-05-22 03:25:32 +0800
committerJohnny Jacob <jjohnny@src.gnome.org>2008-05-22 03:25:32 +0800
commit8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7 (patch)
tree40643c635c2a1953dfd9cea21fec38fc50a07b7b
parentdca020e4e184db2e7fcdc0b5845ab8964f0c473f (diff)
downloadgsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar.gz
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar.bz2
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar.lz
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar.xz
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.tar.zst
gsoc2013-evolution-8f88ab7e6c98f1d2cce2d18eef254b2b4f0591d7.zip
attachment-reminder.c (strip_text_msg): Wrong condition check
svn path=/trunk/; revision=35523
-rw-r--r--plugins/attachment-reminder/ChangeLog4
-rw-r--r--plugins/attachment-reminder/attachment-reminder.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/attachment-reminder/ChangeLog b/plugins/attachment-reminder/ChangeLog
index 767fcf5a66..2bcf880ff1 100644
--- a/plugins/attachment-reminder/ChangeLog
+++ b/plugins/attachment-reminder/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-22 Johnny Jacob <jjohnny@novell.com>
+
+ * attachment-reminder.c (strip_text_msg): Wrong condition check
+
2008-05-20 Johnny Jacob <jjohnny@novell.com>
** Fixes Bug #473198
diff --git a/plugins/attachment-reminder/attachment-reminder.c b/plugins/attachment-reminder/attachment-reminder.c
index 1c26b201f0..10c69bd59a 100644
--- a/plugins/attachment-reminder/attachment-reminder.c
+++ b/plugins/attachment-reminder/attachment-reminder.c
@@ -188,7 +188,7 @@ strip_text_msg (gchar *msg)
gchar *temp;
/* Note : HTML Signatures won't work. Depends on Bug #522784 */
- while (lines [i] && !g_strcmp0 (lines[i], SIGNATURE)){
+ while (lines [i] && g_strcmp0 (lines[i], SIGNATURE)){
if (!g_str_has_prefix (g_strstrip(lines[i]), ">")){
temp = stripped_msg;