Send manager event for blackfilter only if it DOES NOT match.

The logic got reversed, oops. Works properly now when multiple blackfilters are
present.

(closes issue #18283)
Reported by: telecos82
Patches: 
      ast_managereventfilter.patch uploaded by telecos82 (license 687)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@306432 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeff Peeler 2011-02-04 22:37:11 +00:00
parent a8aeb04a9f
commit 3d667d7c0f
1 changed files with 3 additions and 2 deletions

View File

@ -4069,11 +4069,12 @@ static int blackfilter_cmp_fn(void *obj, void *arg, void *data, int flags)
const char *eventdata = arg;
int *result = data;
if (regexec(regex_filter, eventdata, 0, NULL, 0)) {
*result = 1;
if (!regexec(regex_filter, eventdata, 0, NULL, 0)) {
*result = 0;
return (CMP_MATCH | CMP_STOP);
}
*result = 1;
return 0;
}