]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2003-07-09 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Wed, 9 Jul 2003 15:46:33 +0000 (15:46 +0000)
committerpaul <paul>
Wed, 9 Jul 2003 15:46:33 +0000 (15:46 +0000)
* ospfd/ospf_apiserver.c: check for NULL from ospf_lookup()

ospfd/ospf_apiserver.c

index 941678422dc900cdb8873b1db4853c975048af82..55fe57645ac1e0c7d951234a9d4157d582ae01fb 100644 (file)
@@ -87,7 +87,8 @@ ospf_apiserver_if_lookup_by_addr (struct in_addr address)
   struct ospf_interface *oi;
   struct ospf *ospf;
 
-  ospf = ospf_lookup ();
+  if (!(ospf = ospf_lookup ())
+    return NULL;
 
   for (node = listhead (ospf->oiflist); node; nextnode (node))
     {
@@ -108,7 +109,8 @@ ospf_apiserver_if_lookup_by_ifp (struct interface *ifp)
   struct ospf_interface *oi;
   struct ospf *ospf;
 
-  ospf = ospf_lookup ();
+  if (!(ospf = ospf_lookup ());
+    return NULL;
 
   for (node = listhead (ospf->oiflist); node; nextnode (node))
     {
@@ -1494,7 +1496,7 @@ ospf_apiserver_opaque_lsa_new (struct ospf_area *area,
     {
       options = LSA_OPTIONS_GET (area);
 #ifdef HAVE_NSSA
-      options |= LSA_NSSA_GET (area);
+      options |= LSA_OPTIONS_NSSA_GET (area);
 #endif /* HAVE_NSSA */
     }