Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution-data-server/calendar/ChangeLog,v retrieving revision 1.557 diff -u -p -r1.557 ChangeLog --- ChangeLog 23 Jan 2006 14:12:19 -0000 1.557 +++ ChangeLog 9 Feb 2006 06:34:18 -0000 @@ -1,3 +1,10 @@ +2006-02-09 Rajeev ramanathan <rajeevramanathan_2004 yahoo co in> + + **Fixes #326428 + + * backends/contacts/e-cal-backend-contacts.c: (contact_record_free) + Corrected id. + 2006-01-23 Veerapuram Varadhan <vvaradhan novell com> ** Fixes #327427 Index: backends/contacts/e-cal-backend-contacts.c =================================================================== RCS file: /cvs/gnome/evolution-data-server/calendar/backends/contacts/e-cal-backend-contacts.c,v retrieving revision 1.27 diff -u -p -r1.27 e-cal-backend-contacts.c --- backends/contacts/e-cal-backend-contacts.c 24 Oct 2005 08:45:27 -0000 1.27 +++ backends/contacts/e-cal-backend-contacts.c 9 Feb 2006 06:34:46 -0000 @@ -188,7 +188,7 @@ contact_record_free (ContactRecord *cr) /* Remove the anniversary event */ if (cr->comp_anniversary) { comp_str = e_cal_component_get_as_string (cr->comp_anniversary); - id = e_cal_component_get_id (cr->comp_birthday); + id = e_cal_component_get_id (cr->comp_anniversary); e_cal_backend_notify_object_removed (E_CAL_BACKEND (cr->cbc), id, comp_str, NULL);