summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorpaul <paul>2007-06-27 11:12:38 +0000
committerpaul <paul>2007-06-27 11:12:38 +0000
commitd2709b9e648e55d0f33ee33d5d4ac2dc5fe40b6b (patch)
tree388ec4e68df5135466f8dea5e2047af91772a35c /zebra/zebra_rib.c
parent122bc5d4276b933123c40827a696223ae3a39e9e (diff)
downloadquagga-d2709b9e648e55d0f33ee33d5d4ac2dc5fe40b6b.tar.bz2
quagga-d2709b9e648e55d0f33ee33d5d4ac2dc5fe40b6b.tar.xz
[zebra] rib loop check for RIB_ENTRY_REMOVED checks wrong var
2007-06-25 Denis Ovsienko * zebra_rib.c: (rib_add_ipv4_multipath) Loop through RIB is using 'same' variable, but RIB_ENTRY_REMOVED check is testing the constant 'rib' variable, fix. Impact unknown at this point.
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index 693b3331..a85c49fd 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -1393,7 +1393,7 @@ rib_add_ipv4_multipath (struct prefix_ipv4 *p, struct rib *rib)
withdraw. */
for (same = rn->info; same; same = same->next)
{
- if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED))
+ if (CHECK_FLAG (same->status, RIB_ENTRY_REMOVED))
continue;
if (same->type == rib->type && same->table == rib->table