diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 10:55:42 -0800 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 10:55:42 -0800 |
| commit | 12f6fb97311c58742f305ef240f918aa5d57fa79 (patch) | |
| tree | 47ba71dd454d8c1d7a110845f5a2743428d20d26 /zebra/router-id.c | |
| parent | 244a59d22809d9a4a3bc555764e71aa4aff299bf (diff) | |
lib, zebra: The Bulk of the conversion over to NS and VRF
Convert the rest of zebra over to use a Namespae and VRF.
Signed-off-by: Vipin Kumar <vipin@cumulusnetworks.com>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/router-id.c')
| -rw-r--r-- | zebra/router-id.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/router-id.c b/zebra/router-id.c index 82f5a105f4..3277dd1780 100644 --- a/zebra/router-id.c +++ b/zebra/router-id.c @@ -230,7 +230,7 @@ DEFUN (router_id, rid.family = AF_INET; if (argc > 1) - VTY_GET_INTEGER ("VRF ID", vrf_id, argv[1]); + VRF_GET_ID (vrf_id, argv[1]); router_id_set (&rid, vrf_id); @@ -258,7 +258,7 @@ DEFUN (no_router_id, rid.family = AF_INET; if (argc > 1) - VTY_GET_INTEGER ("VRF ID", vrf_id, argv[1]); + VRF_GET_ID (vrf_id, argv[1]); router_id_set (&rid, vrf_id); |
