"dcb ets show dev X help" currently shows full "ets" help instead of just
help for the show command. Fix it.
Signed-off-by: Petr Machata <me@pmachata.org>
Signed-off-by: David Ahern <dsahern@gmail.com>
do {
if (matches(*argv, "help") == 0) {
- dcb_ets_help();
+ dcb_ets_help_show();
return 0;
} else if (matches(*argv, "willing") == 0) {
dcb_ets_print_willing(&ets);
print_nl();
} else {
fprintf(stderr, "What is \"%s\"?\n", *argv);
- dcb_ets_help();
+ dcb_ets_help_show();
return -EINVAL;
}