summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_vty.c
diff options
context:
space:
mode:
authorChristian Franke <chris@opensourcerouting.org>2013-09-30 12:27:49 +0000
committerDavid Lamparter <equinox@opensourcerouting.org>2014-04-01 17:32:49 +0200
commit2b00515a9b639fd1e057f3ebf10ded2dde920764 (patch)
tree1167cb145764208a132599e5d83980708501bac4 /zebra/zebra_vty.c
parentf7bf41534e885c7bc077529c591a1bce24a5f1e9 (diff)
downloadquagga-2b00515a9b639fd1e057f3ebf10ded2dde920764.tar.bz2
quagga-2b00515a9b639fd1e057f3ebf10ded2dde920764.tar.xz
bgpd, ospfd, zebra: fix some DEFUN definitions
Fixup some DEFUNS with incorrect command strings or mixed up helpstrings. Signed-off-by: Christian Franke <chris@opensourcerouting.org> Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_vty.c')
-rw-r--r--zebra/zebra_vty.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c
index 45928e93..f4946f46 100644
--- a/zebra/zebra_vty.c
+++ b/zebra/zebra_vty.c
@@ -280,9 +280,9 @@ DEFUN (ip_route_mask_flags_distance,
"IP destination prefix mask\n"
"IP gateway address\n"
"IP gateway interface name\n"
- "Distance value for this route\n"
"Emit an ICMP unreachable when matched\n"
- "Silently discard pkts when matched\n")
+ "Silently discard pkts when matched\n"
+ "Distance value for this route\n")
{
return zebra_static_ipv4 (vty, 1, argv[0], argv[1], argv[2], argv[3], argv[4]);
}
@@ -294,9 +294,9 @@ DEFUN (ip_route_mask_flags_distance2,
"Establish static routes\n"
"IP destination prefix\n"
"IP destination prefix mask\n"
- "Distance value for this route\n"
"Emit an ICMP unreachable when matched\n"
- "Silently discard pkts when matched\n")
+ "Silently discard pkts when matched\n"
+ "Distance value for this route\n")
{
return zebra_static_ipv4 (vty, 1, argv[0], argv[1], NULL, argv[2], argv[3]);
}