ipc_has_event_listeners: fix inverted check of subscribed_events

subscribed_events is a bit mask, with each *set* bit representing an
event the client has subscribed to.
This commit is contained in:
Daniel Eklöf 2019-02-06 15:16:30 +01:00 committed by Drew DeVault
parent d2d2fc545a
commit 6ade4bd7dd
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data) {
static bool ipc_has_event_listeners(enum ipc_command_type event) {
for (int i = 0; i < ipc_client_list->length; i++) {
struct ipc_client *client = ipc_client_list->items[i];
if ((client->subscribed_events & event_mask(event)) == 0) {
if ((client->subscribed_events & event_mask(event)) != 0) {
return true;
}
}