[zebra] Force rib_update when connected route deleted
diff --git a/zebra/connected.c b/zebra/connected.c
index f3e5396..c776408 100644
--- a/zebra/connected.c
+++ b/zebra/connected.c
@@ -318,6 +318,8 @@
     return;
     
   connected_withdraw (ifc);
+
+  rib_update();
 }
 
 #ifdef HAVE_IPV6
@@ -437,5 +439,7 @@
     return;
 
   connected_withdraw (ifc);
+
+  rib_update();
 }
 #endif /* HAVE_IPV6 */