aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util/calobj.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>1998-05-26 05:51:34 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-05-26 05:51:34 +0800
commit63057dd048e894ccb4ed34fe2e4b975995823618 (patch)
treeecb382906c8779be5d092e44789b66e01c97bca1 /calendar/cal-util/calobj.c
parentd5658f08030c31af25e387e2ab2548b992c66883 (diff)
downloadgsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar.gz
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar.bz2
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar.lz
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar.xz
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.tar.zst
gsoc2013-evolution-63057dd048e894ccb4ed34fe2e4b975995823618.zip
Fix for the weekly event generation. Was reported on the bug tracking
1998-05-25 Miguel de Icaza <miguel@nuclecu.unam.mx> * calobj.c (ical_object_generate_events): Fix for the weekly event generation. Was reported on the bug tracking system. svn path=/trunk/; revision=237
Diffstat (limited to 'calendar/cal-util/calobj.c')
-rw-r--r--calendar/cal-util/calobj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/cal-util/calobj.c b/calendar/cal-util/calobj.c
index 1a9ef3f206..d8ca3fe5db 100644
--- a/calendar/cal-util/calobj.c
+++ b/calendar/cal-util/calobj.c
@@ -1099,7 +1099,7 @@ ical_object_generate_events (iCalObject *ico, time_t start, time_t end, calendar
/* Advance by day for scanning the week or by interval at week end */
if (tm->tm_wday == 6)
- current = time_add_day (current, recur->interval);
+ current = time_add_day (current, (recur->interval-1) * 7 + 1);
else
current = time_add_day (current, 1);