From 3a283cd05cbdafb52040c8d1a048f678d6d7e13c Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Tue, 24 Apr 2018 20:11:48 +0200 Subject: [PATCH] let KORE_MSG_WORKER_ALL include sender. --- src/msg.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/msg.c b/src/msg.c index b1b6673..68ea66a 100644 --- a/src/msg.c +++ b/src/msg.c @@ -181,8 +181,6 @@ msg_recv_data(struct netbuf *nb) if (worker == NULL && type == NULL) { destination = msg->dst; TAILQ_FOREACH(c, &connections, list) { - if (c == nb->owner) - continue; if (c->proto != CONN_PROTO_MSG || c->hdlr_extra == NULL) continue;