[evolution-patches] service_setv ignore correction



Hi,

this small patch corrects the ignore checking in camel-service.c. It has
the same error that was in camel-imap-store.c wich fejj already
corrected!

Cu!
Christian
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/camel/ChangeLog,v
retrieving revision 1.2185
diff -u -r1.2185 ChangeLog
--- ChangeLog	17 Jun 2004 14:24:28 -0000	1.2185
+++ ChangeLog	17 Jun 2004 15:08:57 -0000
@@ -1,3 +1,8 @@
+2004-06-17  Christian Kellner  <gicmo xatom net>
+
+	* camel-service.c (service_setv): correct ignore. Same as
+	  in camel-imap-store.c 
+
 2004-06-17  Jeffrey Stedfast  <fejj ximian com>
 
 	* providers/imap/camel-imap-store.c (imap_setv): Only ignore if
Index: camel-service.c
===================================================================
RCS file: /cvs/gnome/evolution/camel/camel-service.c,v
retrieving revision 1.88
diff -u -r1.88 camel-service.c
--- camel-service.c	5 Feb 2004 05:13:56 -0000	1.88
+++ camel-service.c	17 Jun 2004 15:08:58 -0000
@@ -162,7 +162,7 @@
 		tag = args->argv[i].tag;
 		
 		/* make sure this arg wasn't already handled */
-		if (tag & CAMEL_ARG_IGNORE)
+		if ((tag & CAMEL_ARG_TAG) == CAMEL_ARG_IGNORE)
 			continue;
 		
 		/* make sure this is an arg we're supposed to handle */


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