diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:38:24 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:38:24 +0200 |
commit | 032201378faa52e2d7a15ea265426e133d9becca (patch) | |
tree | 8dcef810ac517c3c0b1ed359edd160c67e691c81 /nest/proto.c | |
parent | 45af19dd99b3c8f954621e09075e8be180e2f731 (diff) | |
parent | cd9550b24487ac7327b0234fd825f4214fdf7b16 (diff) |
Merge commit 'cd9550b24487ac7327b0234fd825f4214fdf7b16' into haugesund
Diffstat (limited to 'nest/proto.c')
-rw-r--r-- | nest/proto.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/nest/proto.c b/nest/proto.c index 304451cb..6bc9c1c3 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -390,14 +390,8 @@ channel_roa_subscribe_filter(struct channel *c, int dir) { switch (fi->fi_code) { - case FI_ROA_CHECK_IMPLICIT: - tab = fi->i_FI_ROA_CHECK_IMPLICIT.rtc->table; - if (valid) channel_roa_subscribe(c, tab, dir); - found = 1; - break; - - case FI_ROA_CHECK_EXPLICIT: - tab = fi->i_FI_ROA_CHECK_EXPLICIT.rtc->table; + case FI_ROA_CHECK: + tab = fi->i_FI_ROA_CHECK.rtc->table; if (valid) channel_roa_subscribe(c, tab, dir); found = 1; break; |