]> git.puffer.fish Git - mirror/frr.git/commitdiff
babeld: fix commands informations messages.
authorMatthieu Boutier <boutier@pps.jussieu.fr>
Wed, 18 Jan 2012 22:03:00 +0000 (23:03 +0100)
committerPaul Jakma <paul@quagga.net>
Sun, 25 Mar 2012 16:06:52 +0000 (17:06 +0100)
babeld/babel_interface.c
babeld/babeld.c

index 3f5800460cfa3116fc2cf2750efb8debd85aebdb..e403cce08573712ff4d08f12aee447c057dd2340 100644 (file)
@@ -368,8 +368,8 @@ DEFUN (babel_split_horizon,
        babel_split_horizon_cmd,
        "babel split-horizon",
        IPV6_STR
-       "Routing Information Protocol\n"
-       "Perform split horizon\n")
+       "Perform split horizon\n"
+       "No attributes\n")
 {
     struct interface *ifp;
     babel_interface_nfo *babel_ifp;
@@ -388,8 +388,8 @@ DEFUN (no_babel_split_horizon,
        "no babel split-horizon",
        NO_STR
        IPV6_STR
-       "Routing Information Protocol\n"
-       "Perform split horizon\n")
+       "Disable split horizon\n"
+       "No attributes\n")
 {
     struct interface *ifp;
     babel_interface_nfo *babel_ifp;
@@ -427,7 +427,7 @@ DEFUN (babel_passive_interface,
        babel_passive_interface_cmd,
        "passive-interface",
        "The daemon will only announce redistributed routes\n"
-       "Interface name\n")
+       "No attributes\n")
 {
     if (allow_duplicates) {
         return CMD_WARNING;
@@ -442,7 +442,7 @@ DEFUN (no_babel_passive_interface,
        "no passive-interface",
        NO_STR
        "The daemon will announce all (filtred) routes\n"
-       "Interface name\n")
+       "No attributes\n")
 {
     parasitic = 0;
     return CMD_SUCCESS;
index 9f2ab5d9a0a8b8c7f047fc99450ed63370d83688..6487bbe1505bf2a74e26f70db5d667c47abb4c7c 100644 (file)
@@ -593,7 +593,8 @@ DEFUN (router_babel,
        router_babel_cmd,
        "router babel",
        "Enable a routing process\n"
-       "Make Babel instance command\n")
+       "Make Babel instance command\n"
+       "No attributes\n")
 {
     int ret;
 
@@ -617,7 +618,8 @@ DEFUN (no_router_babel,
        "no router babel",
        NO_STR
        "Disable a routing process\n"
-       "Remove Babel instance command\n")
+       "Remove Babel instance command\n"
+       "No attributes\n")
 {
     if(babel_routing_process)
         babel_clean_routing_process();