[evolution-patches] (Calendar - GW Backend) Patch for adding missing separator in the gwrecordid



hi,
 The attached patch adds the ':' as a separator while appending the
container id to the xgwrecordid to generate the item_id.



Index: calendar/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/ChangeLog,v
retrieving revision 1.304
diff -u -p -r1.304 ChangeLog
--- calendar/ChangeLog	2 Aug 2004 11:38:08 -0000	1.304
+++ calendar/ChangeLog	2 Aug 2004 14:54:06 -0000
@@ -1,3 +1,10 @@
+2004-08-02  Harish Krishnaswamy  <kharish novell com>
+
+	* backends/groupwise/e-cal-backend-groupwise-utils.c:
+	(e_gw_connection_send_appointment): Add ':' as a separator
+	while appending the container id to the xgwrecordid to
+	generate the item_id.
+
 2004-08-02  Not Zed  <NotZed Ximian com>
 
 	** See bug #58642.
Index: calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c,v
retrieving revision 1.26
diff -u -p -r1.26 e-cal-backend-groupwise-utils.c
--- calendar/backends/groupwise/e-cal-backend-groupwise-utils.c	27 Jul 2004 13:17:26 -0000	1.26
+++ calendar/backends/groupwise/e-cal-backend-groupwise-utils.c	2 Aug 2004 14:54:06 -0000
@@ -592,7 +592,7 @@ e_gw_connection_send_appointment (EGwCon
 	/* When the icalcomponent is obtained through the itip message rather
 	 * than from the SOAP protocol, the container id has to be explicitly 
 	 * added to the xgwrecordid inorder to obtain the item id. */
-	item_id = g_strconcat (e_cal_component_get_gw_id (comp), container, NULL);
+	item_id = g_strconcat (e_cal_component_get_gw_id (comp), ":", container, NULL);
 	switch (method) {
 	case ICAL_METHOD_REQUEST:
 		/* get attendee here and add the list along. */


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