Thomas Koeller writes:

Hi,

    the following output is from BusyBox 1.0.0-pre10:

    ~ # ip link help
    ip: Command "help" is unknown, try "ip link help".

    tk

This patch fixes it by removing the advertisements for
the "ip blah help" stuff that is not implemented.
This commit is contained in:
Eric Andersen 2004-04-26 19:32:49 +00:00
parent 51ba90ef51
commit f71ad6c9e4
2 changed files with 2 additions and 2 deletions

View File

@ -362,6 +362,6 @@ int do_iplink(int argc, char **argv)
} else
return ipaddr_list_link(0, NULL);
bb_error_msg("Command \"%s\" is unknown, try \"ip link help\".", *argv);
bb_error_msg("Command \"%s\" is unknown.", *argv);
exit(-1);
}

View File

@ -543,6 +543,6 @@ int do_iptunnel(int argc, char **argv)
} else
return do_show(0, NULL);
bb_error_msg("Command \"%s\" is unknown, try \"ip tunnel help\".", *argv);
bb_error_msg("Command \"%s\" is unknown.", *argv);
exit(-1);
}