diff options
author | Christian Franke <chris@opensourcerouting.org> | 2013-09-30 12:27:49 +0000 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2014-04-01 17:32:49 +0200 |
commit | 2b00515a9b639fd1e057f3ebf10ded2dde920764 (patch) | |
tree | 1167cb145764208a132599e5d83980708501bac4 /zebra/debug.c | |
parent | f7bf41534e885c7bc077529c591a1bce24a5f1e9 (diff) | |
download | quagga-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/debug.c')
-rw-r--r-- | zebra/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index 7bfdb77d..c3b00e0f 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -35,8 +35,8 @@ DEFUN (show_debugging_zebra, show_debugging_zebra_cmd, "show debugging zebra", SHOW_STR - "Zebra configuration\n" - "Debugging information\n") + "Debugging information\n" + "Zebra configuration\n") { vty_out (vty, "Zebra debugging status:%s", VTY_NEWLINE); @@ -128,7 +128,7 @@ DEFUN (debug_zebra_packet_detail, "Debug option set for zebra packet\n" "Debug option set for receive packet\n" "Debug option set for send packet\n" - "Debug option set detaied information\n") + "Debug option set detailed information\n") { zebra_debug_packet = ZEBRA_DEBUG_PACKET; if (strncmp ("send", argv[0], strlen (argv[0])) == 0) |