summaryrefslogtreecommitdiffstats
path: root/bgpd
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2016-05-11 14:26:39 +0200
committerDonald Sharp <sharpd@cumulusnetwroks.com>2016-09-03 17:05:51 +0200
commit6e13ed4af9d908a416c6c70274aec5429fae6370 (patch)
treea98ee3f608ac0cb387dd8acad85d909e321106c6 /bgpd
parentlib: add AF_ETHERNET/AFI_ETHER (diff)
downloadfrr-6e13ed4af9d908a416c6c70274aec5429fae6370.tar.xz
frr-6e13ed4af9d908a416c6c70274aec5429fae6370.zip
bgpd: fix wrong help strings of "match peer" and "no match peer" commands
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com> Signed-off-by: Igor Ryzhov <iryzhov@nfware.com> Tested-by: NetDEF CI System <cisystem@netdef.org>
Diffstat (limited to 'bgpd')
-rw-r--r--bgpd/bgp_routemap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bgpd/bgp_routemap.c b/bgpd/bgp_routemap.c
index e4fd730cf..fea9ae6b1 100644
--- a/bgpd/bgp_routemap.c
+++ b/bgpd/bgp_routemap.c
@@ -2997,8 +2997,8 @@ DEFUN (match_peer,
"match peer (A.B.C.D|X:X::X:X)",
MATCH_STR
"Match peer address\n"
- "IPv6 address of peer\n"
- "IP address of peer\n")
+ "IP address of peer\n"
+ "IPv6 address of peer\n")
{
return bgp_route_match_add (vty, vty->index, "peer", argv[0],
RMAP_EVENT_MATCH_ADDED);
@@ -3036,8 +3036,8 @@ ALIAS (no_match_peer,
NO_STR
MATCH_STR
"Match peer address\n"
- "IPv6 address of peer\n"
- "IP address of peer\n")
+ "IP address of peer\n"
+ "IPv6 address of peer\n")
ALIAS (no_match_peer,
no_match_peer_local_cmd,