diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-12-01 19:41:52 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-12-01 19:51:09 +0100 |
commit | 716b2d8acc7c8e1b5399cd55bf7e4a6b6609b5e0 (patch) | |
tree | c108115662cce7990bde58a0637ffb6c8143ee2b /bgpd/bgp_updgrp_adv.c | |
parent | all: Replace "JavaScript Object Notation\n" with JSON_STR (diff) | |
download | frr-716b2d8acc7c8e1b5399cd55bf7e4a6b6609b5e0.tar.xz frr-716b2d8acc7c8e1b5399cd55bf7e4a6b6609b5e0.zip |
bgpd: Make `ip` optional for all `show bgp` and `show ip bgp` commands
This should unify the `show bgp ...` and `show ip bgp...` command
variants under one tree.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_updgrp_adv.c')
-rw-r--r-- | bgpd/bgp_updgrp_adv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_updgrp_adv.c b/bgpd/bgp_updgrp_adv.c index c485e61e5..913f3d150 100644 --- a/bgpd/bgp_updgrp_adv.c +++ b/bgpd/bgp_updgrp_adv.c @@ -167,7 +167,7 @@ group_announce_route_walkcb (struct update_group *updgrp, void *arg) subgroup_process_announce_selected (subgrp, ri, ctx->rn, ri->addpath_tx_id); } - /* Process the bestpath last so the "show ip bgp neighbor x.x.x.x advertised" + /* Process the bestpath last so the "show [ip] bgp neighbor x.x.x.x advertised" * output shows the attributes from the bestpath */ if (ctx->ri) subgroup_process_announce_selected (subgrp, ctx->ri, ctx->rn, ctx->ri->addpath_tx_id); |