diff options
Diffstat (limited to 'plugins/attachment-reminder/attachment-reminder.c')
-rw-r--r-- | plugins/attachment-reminder/attachment-reminder.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |