In webcit-classic, include webserver.h from webcit.h.
[citadel.git] / webcit-ng / server / caldav_reports.c
index d2d323f43d95d25acd4ee17e5f1160342fe2f1bf..9dece4c795cbb5a5af9ce4d721c44fe0f0ae1740 100644 (file)
@@ -261,7 +261,6 @@ void caldav_report_one_item(struct http_transaction *h, struct ctdlsession *c, S
 // Returns nonzero if the supplied icalcomponent occurs within the specified time range
 int caldav_time_range_filter_matches(icalcomponent *cal, char *start_str, char *end_str) {
 
-
        struct icaltimetype start = (start_str ? icaltime_from_string(start_str) : icaltime_null_time());
        struct icaltimetype end = (end_str ? icaltime_from_string(end_str) : icaltime_null_time());