commit | af8d0336a3cd98ef2fe163a6303a077735de4fb2 | [log] [tgz] |
---|---|---|
author | paul <paul> | Sat May 24 15:31:45 2003 +0000 |
committer | paul <paul> | Sat May 24 15:31:45 2003 +0000 |
tree | 7d68d4258ccbda69ec2b24107c05187637de08c7 | |
parent | 0a825c79339870bd9d815172a29ae9567b61c4e6 [diff] [blame] |
Fix missing bracket from previous commit.
diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 569e478..a1b10c7 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c
@@ -426,8 +426,9 @@ { 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; } }