summaryrefslogtreecommitdiffstats
path: root/zebra/connected.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-04-29 21:54:59 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-04-29 21:54:59 -0700
commitc3b8cee8a4cdf2cc99c544299bbd5937c96248d2 (patch)
tree9b042203c20d0974ea2eae3fc11eb3c6300e6eef /zebra/connected.c
parent703a37cd9a70d7f281039a64cc82d81a00ade91f (diff)
downloadquagga-c3b8cee8a4cdf2cc99c544299bbd5937c96248d2.tar.bz2
quagga-c3b8cee8a4cdf2cc99c544299bbd5937c96248d2.tar.xz
Force rib_update when connected route deleted
Diffstat (limited to 'zebra/connected.c')
-rw-r--r--zebra/connected.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/connected.c b/zebra/connected.c
index 98c1ae19..a3e20096 100644
--- a/zebra/connected.c
+++ b/zebra/connected.c
@@ -321,6 +321,8 @@ connected_delete_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,
return;
connected_withdraw (ifc);
+
+ rib_update();
}
#ifdef HAVE_IPV6
@@ -440,5 +442,7 @@ connected_delete_ipv6 (struct interface *ifp, struct in6_addr *address,
return;
connected_withdraw (ifc);
+
+ rib_update();
}
#endif /* HAVE_IPV6 */