commit | 0d27129ac5fd70b90820e3dde05c085d1a0f63a8 | [log] [tgz] |
---|---|---|
author | Donald Sharp <sharpd@cumulusnetworks.com> | Thu Nov 19 07:21:30 2015 -0500 |
committer | Donald Sharp <sharpd@cumulusnetworks.com> | Tue Dec 08 14:16:24 2015 -0500 |
tree | c0267ab193459bd71f217dcbd0905ad0b9db012e | |
parent | 64e0ac29ddc43bb5b1a2999a8ebedbdff115e3ca [diff] |
zebra: Fix non usage of VRF_DEFAULT A vrf_id was being set to 0 instead of VRF_DEFAULT Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 0efa88d..38357ff 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c
@@ -3247,7 +3247,7 @@ { case RIB_TABLES_ITER_S_INIT: - iter->vrf_id = 0; + iter->vrf_id = VRF_DEFAULT; iter->afi_safi_ix = -1; /* Fall through */