evolution r35523 - trunk/plugins/attachment-reminder



Author: jjohnny
Date: Wed May 21 19:25:32 2008
New Revision: 35523
URL: http://svn.gnome.org/viewvc/evolution?rev=35523&view=rev

Log:
attachment-reminder.c (strip_text_msg): Wrong condition check


Modified:
   trunk/plugins/attachment-reminder/ChangeLog
   trunk/plugins/attachment-reminder/attachment-reminder.c

Modified: trunk/plugins/attachment-reminder/attachment-reminder.c
==============================================================================
--- trunk/plugins/attachment-reminder/attachment-reminder.c	(original)
+++ trunk/plugins/attachment-reminder/attachment-reminder.c	Wed May 21 19:25:32 2008
@@ -188,7 +188,7 @@
 	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;
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]