From: Donald Sharp Date: Thu, 19 Nov 2015 12:21:30 +0000 (-0500) Subject: zebra: Fix non usage of VRF_DEFAULT X-Git-Tag: frr-2.0-rc1~1195 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=9c2bf1cf3997e635df124b42bdd671a99c50bdc4;p=mirror%2Ffrr.git zebra: Fix non usage of VRF_DEFAULT A vrf_id was being set to 0 instead of VRF_DEFAULT Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 0fa9a79c31..a9ea4f2d1d 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -3885,7 +3885,7 @@ rib_tables_iter_next (rib_tables_iter_t *iter) { case RIB_TABLES_ITER_S_INIT: - iter->vrf_id = 0; + iter->vrf_id = VRF_DEFAULT; iter->afi_safi_ix = -1; /* Fall through */