diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-01-09 16:57:35 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-01-15 08:29:36 -0500 |
| commit | 946de1b95acee8282a9b38a076d13e21b3440d90 (patch) | |
| tree | 24a5adfd349c60c504fb26038fe6625dcdc357ba /zebra/zapi_msg.c | |
| parent | f014634e8527e198760a7b14600908f9dd21e45c (diff) | |
bgpd, ospfd, zebra: Do not use 0 as VRF_DEFAULT
Explicitly spell out what we are trying to do.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zapi_msg.c')
| -rw-r--r-- | zebra/zapi_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c index 651babdeba..af44768a51 100644 --- a/zebra/zapi_msg.c +++ b/zebra/zapi_msg.c @@ -1416,7 +1416,7 @@ static void zread_route_add(ZAPI_HANDLER_ARGS) struct nexthop *nexthop = NULL; struct nexthop_group *ng = NULL; int i, ret; - vrf_id_t vrf_id = 0; + vrf_id_t vrf_id; struct ipaddr vtep_ip; s = msg; |
