mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-04 15:30:02 +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 (match == NULL ||
|
||||
(match->address->prefixlen < oi->address->prefixlen)
|
||||
if ( (match == NULL) ||
|
||||
(match->address->prefixlen < oi->address->prefixlen)
|
||||
)
|
||||
match = oi;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user