diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 19:55:42 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 19:55:42 +0100 |
commit | 12f6fb97311c58742f305ef240f918aa5d57fa79 (patch) | |
tree | 47ba71dd454d8c1d7a110845f5a2743428d20d26 /zebra/router-id.c | |
parent | zebra: Add the 'struct zebra_ns' data structure (diff) | |
download | frr-12f6fb97311c58742f305ef240f918aa5d57fa79.tar.xz frr-12f6fb97311c58742f305ef240f918aa5d57fa79.zip |
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 82f5a105f..3277dd178 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); |