diff options
author | Maria Matejka <mq@jmq.cz> | 2021-10-27 12:42:05 +0000 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-11-22 19:05:44 +0100 |
commit | c7d0c5b2523a8cbfcaee9a235955dd5e58fab671 (patch) | |
tree | 37abff70b2edc5fcc34b6f93f75abcbd7bfa335f /nest/rt-table.c | |
parent | 18f66055e3f7eec2108e18679652aee47f5de6b2 (diff) |
Route subscription uses events
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index e307449a..fb0496bd 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -1979,7 +1979,7 @@ rt_settle_timer(timer *t) struct rt_subscription *s; WALK_LIST(s, tab->subscribers) - s->hook(s); + ev_send(s->event->list, s->event); } static void |