diff options
Diffstat (limited to 'src/recur.c')
-rw-r--r-- | src/recur.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/recur.c b/src/recur.c index 76585d6..61fd155 100644 --- a/src/recur.c +++ b/src/recur.c @@ -380,6 +380,8 @@ struct recur_apoint *recur_apoint_scan(FILE * f, struct tm start, if (filter) { if (!(filter->type_mask & TYPE_MASK_RECUR_APPT)) return NULL; + if (filter->regex && regexec(filter->regex, buf, 0, 0, 0)) + return NULL; if (filter->start_from >= 0 && tstart < filter->start_from) return NULL; if (filter->start_to >= 0 && tstart > filter->start_to) @@ -437,6 +439,8 @@ struct recur_event *recur_event_scan(FILE * f, struct tm start, int id, if (filter) { if (!(filter->type_mask & TYPE_MASK_RECUR_EVNT)) return NULL; + if (filter->regex && regexec(filter->regex, buf, 0, 0, 0)) + return NULL; if (filter->start_from >= 0 && tstart < filter->start_from) return NULL; if (filter->start_to >= 0 && tstart > filter->start_to) |