From 39337fc30a0867eb81bb31ce696d755ff28a884b Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Tue, 21 Dec 2004 18:35:10 +0000 Subject: Fixes #41624 2004-12-21 JP Rosevear Fixes #41624 * conduits/calendar/calendar-conduit.c (local_record_from_comp): append the exceptions, don't keep overwriting the first svn path=/trunk/; revision=28168 --- calendar/ChangeLog | 7 +++++++ calendar/conduits/calendar/calendar-conduit.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6212099647..88fc98ea19 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-12-21 JP Rosevear + + Fixes #41624 + + * conduits/calendar/calendar-conduit.c (local_record_from_comp): + append the exceptions, don't keep overwriting the first + 2004-12-21 Rodrigo Moya * gui/e-cal-model.c (set_instance_times): no need to convert times now. diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index 7f47140196..b3c1b5e553 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -960,7 +960,7 @@ local_record_from_comp (ECalLocalRecord *local, ECalComponent *comp, ECalConduit icaltimezone_convert_time (dt->value, icaltimezone_get_utc_timezone (), default_tz); - *local->appt->exception = icaltimetype_to_tm (dt->value); + local->appt->exception[i] = icaltimetype_to_tm (dt->value); } e_cal_component_free_exdate_list (edl); } -- cgit