Fix missing bracket from previous commit.

This commit is contained in:
paul 2003-05-24 15:31:45 +00:00
parent 0a825c7933
commit af8d0336a3

View File

@ -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;
}
}