diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/events.c b/source3/lib/events.c index f7bad9bcad..9decf213b4 100644 --- a/source3/lib/events.c +++ b/source3/lib/events.c @@ -292,7 +292,7 @@ bool run_events(struct event_context *event_ctx, if (FD_ISSET(fde->fd, read_fds)) flags |= EVENT_FD_READ; if (FD_ISSET(fde->fd, write_fds)) flags |= EVENT_FD_WRITE; - if (flags) { + if (flags & fde->flags) { fde->handler(event_ctx, fde, flags, fde->private_data); fired = True; } |