* [dpdk-dev] [PATCH v1] pktgen: fix sequence help message
[not found] <CGME20200115084401eucas1p11034d3dacb49ffc91847afe9d058a0e5@eucas1p1.samsung.com>
@ 2020-01-15 8:43 ` Ivan Dyukov
0 siblings, 0 replies; only message in thread
From: Ivan Dyukov @ 2020-01-15 8:43 UTC (permalink / raw)
To: dev, keith.wiles; +Cc: Ivan Dyukov
pktgen cli does not show sequence help if it's wrong or incomplete
Signed-off-by: Ivan Dyukov <i.dyukov@samsung.com>
---
app/cli-functions.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/cli-functions.c b/app/cli-functions.c
index f104781..4e949f3 100644
--- a/app/cli-functions.c
+++ b/app/cli-functions.c
@@ -1309,7 +1309,7 @@ seq_cmd(int argc, char **argv)
m = cli_mapping(seq_map, argc, argv);
if (!m)
- return cli_cmd_error("Sequence invalid command", "Seq", argc, argv);
+ return cli_cmd_error("Sequence invalid command", "Sequence", argc, argv);
switch(m->index) {
case 10:
@@ -1320,7 +1320,7 @@ seq_cmd(int argc, char **argv)
case 16:
case 17: seq_4_set_cmd(argc, argv); break;
default:
- return cli_cmd_error("Sequence invalid command", "Seq", argc, argv);
+ return cli_cmd_error("Sequence invalid command", "Sequence", argc, argv);
}
return 0;
}
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread