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