Fix assert in ospf_api where interface is not configured in ospf.
diff --git a/ospfd/ospf_apiserver.c b/ospfd/ospf_apiserver.c
index fc0713b..90ca230 100644
--- a/ospfd/ospf_apiserver.c
+++ b/ospfd/ospf_apiserver.c
@@ -2131,7 +2131,12 @@
 	     ifp->ifindex);
 
   oi = ospf_apiserver_if_lookup_by_ifp (ifp);
-  assert (oi);
+
+  if (!oi) {
+    /* This interface is known to Zebra but not to OSPF daemon
+       anymore. No need to tell clients about it */
+    return 0;
+  }
 
   /* Interface deleted, tell clients about it */
   if (listcount (apiserver_list) > 0) {