updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / quagga / patch-interface.c.patch
blob9f2dd01c660552910d391f5e39e9544bc1d728e3
1 diff -ur quagga-0.99.14/zebra/interface.c quagga-0.99.14-fix-ipremove/zebra/interface.c
2 --- quagga-0.99.14/zebra/interface.c 2009-07-21 13:11:21.000000000 +0100
3 +++ quagga-0.99.14-fix-ipremove/zebra/interface.c 2009-08-12 17:04:14.000000000 +0100
4 @@ -1293,17 +1293,17 @@
5 return CMD_WARNING;
8 -#if 0
9 /* Redistribute this information. */
10 zebra_interface_address_delete_update (ifp, ifc);
12 /* Remove connected route. */
13 connected_down_ipv4 (ifp, ifc);
15 + if_subnet_delete(ifp, ifc);
17 /* Free address information. */
18 listnode_delete (ifp->connected, ifc);
19 connected_free (ifc);
20 -#endif
22 return CMD_SUCCESS;