diff options
author | Maria Matejka <mq@ucw.cz> | 2022-01-10 09:30:46 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-02-03 10:03:37 +0100 |
commit | 3cf5e0f1443a1438ae3a84d0e91d7ad098590897 (patch) | |
tree | 192b8f402f504bf69655dcc194778ce19c5b8a5b | |
parent | ee84ff14a10ebae1e000946be56ff1d1277ca7d5 (diff) |
Dropping a nonsensical assert which broke Babel
-rw-r--r-- | nest/rt-table.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index 2c0f1c63..2ed622cc 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -614,9 +614,6 @@ rt_notify_basic(struct channel *c, const net_addr *net, rte *new, rte *old) if (old && !bmap_test(&c->export_map, old->id)) old = NULL; - if (old && (old->sender == c->in_req.hook)) - bug("bad-behaved pipe"); - if (!new && !old) return; |