mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 23:48:11 +00:00
Fix missing bracket from previous commit.
This commit is contained in:
parent
0a825c7933
commit
af8d0336a3
@ -426,8 +426,9 @@ ospf_if_lookup_recv_if (struct ospf *ospf, struct in_addr src)
|
|||||||
{
|
{
|
||||||
if (prefix_match (oi->address, (struct prefix *) &addr))
|
if (prefix_match (oi->address, (struct prefix *) &addr))
|
||||||
{
|
{
|
||||||
if (match == NULL ||
|
if ( (match == NULL) ||
|
||||||
(match->address->prefixlen < oi->address->prefixlen)
|
(match->address->prefixlen < oi->address->prefixlen)
|
||||||
|
)
|
||||||
match = oi;
|
match = oi;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user