From 2fd279056306208b84c5f5908b0d6e820dc71876 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 14 Mar 2007 15:22:09 +0000 Subject: [PATCH] Renamed ical_dezonify_recur() to ical_dezonify_recurse() to avoid 'recur' being mistaken for an abbreviation of 'recurrence' --- webcit/ical_dezonify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webcit/ical_dezonify.c b/webcit/ical_dezonify.c index 76c84b794..0dbf47818 100644 --- a/webcit/ical_dezonify.c +++ b/webcit/ical_dezonify.c @@ -138,7 +138,7 @@ void ical_dezonify_backend(icalcomponent *cal, /* * Recursive portion of ical_dezonify() */ -void ical_dezonify_recur(icalcomponent *cal, icalcomponent *rcal) { +void ical_dezonify_recurse(icalcomponent *cal, icalcomponent *rcal) { icalcomponent *c; icalproperty *p; @@ -152,7 +152,7 @@ void ical_dezonify_recur(icalcomponent *cal, icalcomponent *rcal) { rcal, ICAL_ANY_COMPONENT) ) { if (icalcomponent_isa(c) != ICAL_VTIMEZONE_COMPONENT) { - ical_dezonify_recur(cal, c); + ical_dezonify_recurse(cal, c); } } @@ -188,7 +188,7 @@ void ical_dezonify(icalcomponent *cal) { /* lprintf(9, "ical_dezonify() started\n"); */ /* Convert all times to UTC */ - ical_dezonify_recur(cal, cal); + ical_dezonify_recurse(cal, cal); /* Strip out VTIMEZONE subcomponents -- we don't need them anymore */ while (vt = icalcomponent_get_first_component( -- 2.39.2