From a675b72dec0aadfaef3f41f17c94f7d61b10f5ce Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 14 Mar 2007 15:19:15 +0000 Subject: [PATCH] Renamed ical_dezonify_recur() to ical_dezonify_recurse() to avoid 'recur' being mistaken for an abbreviation of 'recurrence' --- citadel/ical_dezonify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/citadel/ical_dezonify.c b/citadel/ical_dezonify.c index a069a0442..0f0027c4f 100644 --- a/citadel/ical_dezonify.c +++ b/citadel/ical_dezonify.c @@ -144,7 +144,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; @@ -158,7 +158,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); } } @@ -194,7 +194,7 @@ void ical_dezonify(icalcomponent *cal) { lprintf(CTDL_DEBUG, "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