babeld: fix commands informations messages.
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c
index 3f58004..e403cce 100644
--- a/babeld/babel_interface.c
+++ b/babeld/babel_interface.c
@@ -368,8 +368,8 @@
        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 @@
        "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 @@
        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 @@
        "no passive-interface",
        NO_STR
        "The daemon will announce all (filtred) routes\n"
-       "Interface name\n")
+       "No attributes\n")
 {
     parasitic = 0;
     return CMD_SUCCESS;
diff --git a/babeld/babeld.c b/babeld/babeld.c
index 9f2ab5d..6487bbe 100644
--- a/babeld/babeld.c
+++ b/babeld/babeld.c
@@ -593,7 +593,8 @@
        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 @@
        "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();