]> git.puffer.fish Git - matthieu/frr.git/commitdiff
Fix missing bracket from previous commit.
authorpaul <paul>
Sat, 24 May 2003 15:31:45 +0000 (15:31 +0000)
committerpaul <paul>
Sat, 24 May 2003 15:31:45 +0000 (15:31 +0000)
ospfd/ospf_interface.c

index 569e4781412b3fc932e7a84d62c4746c890cbafd..a1b10c7439ccc0cc0e4b70e42538554180417386 100644 (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;
            }
        }