Renamed ical_dezonify_recur() to ical_dezonify_recurse()
authorArt Cancro <ajc@citadel.org>
Wed, 14 Mar 2007 15:22:09 +0000 (15:22 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 14 Mar 2007 15:22:09 +0000 (15:22 +0000)
to avoid 'recur' being mistaken for an abbreviation of 'recurrence'

webcit/ical_dezonify.c

index 76c84b7941aba96499961bba84ed459d229723f3..0dbf47818a66d3085d9d31d64436415c773577f8 100644 (file)
@@ -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(