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>
This commit is contained in:
Donald Sharp 2015-11-19 07:21:30 -05:00
parent db7c85284f
commit 9c2bf1cf39

View File

@ -3885,7 +3885,7 @@ rib_tables_iter_next (rib_tables_iter_t *iter)
{ {
case RIB_TABLES_ITER_S_INIT: case RIB_TABLES_ITER_S_INIT:
iter->vrf_id = 0; iter->vrf_id = VRF_DEFAULT;
iter->afi_safi_ix = -1; iter->afi_safi_ix = -1;
/* Fall through */ /* Fall through */