0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-12 22:28:44 +00:00

fixup! fixup! fixup! rt-feed-by-fib: addr to trie

This commit is contained in:
katerina.kubecova 2023-10-02 12:10:50 +02:00
parent 3e7e61ec6c
commit b61d506f9d
2 changed files with 3 additions and 3 deletions

View File

@ -327,7 +327,7 @@ struct rt_export_request {
};
static inline int net_in_netX_from_export_request(const net_addr *a, const net_addr *n){
if (a->type != n->type)
if ( a->type != n->type )
return 0;
return (net_pxlen(n) <= net_pxlen(a)) && ipa_in_netX(net_prefix(a), n);