X-Git-Url: http://www.privoxy.org/gitweb/show-status?a=blobdiff_plain;f=actions.c;h=9fd3249cbf1fc43f183d291a1b9511be8e0ea42e;hb=2d08ec2fef1ad059138cc7c23c4146295bbfa2eb;hp=7fbcd3a30d3e84f998ba58a264c02b10f7e481a3;hpb=d128e6aa419ebf45411003e0e0276038e67d0b33;p=privoxy.git diff --git a/actions.c b/actions.c index 7fbcd3a3..9fd3249c 100644 --- a/actions.c +++ b/actions.c @@ -829,7 +829,7 @@ int update_action_bits_for_tag(struct client_state *csp, const char *tag) } /* and check if one of the tag patterns matches the tag, */ - if (0 == regexec(b->url->pattern.tag_regex, tag, 0, NULL, 0)) + if (regex_matches(b->url->pattern.tag_regex, tag)) { /* if it does, update the action bit map, */ if (merge_current_action(csp->action, b->action)) @@ -884,7 +884,7 @@ jb_err check_negative_tag_patterns(struct client_state *csp, unsigned int flag) } for (tag = csp->tags->first; NULL != tag; tag = tag->next) { - if (0 == regexec(b->url->pattern.tag_regex, tag->str, 0, NULL, 0)) + if (regex_matches(b->url->pattern.tag_regex, tag->str)) { /* * The pattern matches at least one tag, thus the action