afb-export: Fix error in event handling 45/18045/1
authorJosé Bollo <jose.bollo@iot.bzh>
Fri, 16 Nov 2018 10:37:54 +0000 (11:37 +0100)
committerJosé Bollo <jose.bollo@iot.bzh>
Fri, 16 Nov 2018 10:39:08 +0000 (11:39 +0100)
Change-Id: I2869a2a840fb07550d493ddc2d651358892d33d1
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
src/afb-export.c

index fb1888e..cabb485 100644 (file)
@@ -1172,7 +1172,7 @@ static void listener_of_events(void *closure, const char *event, int eventid, st
        /* search the handler */
        handler = export->event_handlers;
        while (handler) {
-               if (fnmatch(handler->pattern, event, 0)) {
+               if (!fnmatch(handler->pattern, event, 0)) {
                        if (!(export->hooksvc & afb_hook_flag_api_on_event_handler))
                                handler->callback(handler->closure, event, object, to_api_x3(export));
                        else {