From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH 6/7] app/test: no more builtin commands Date: Mon, 18 Aug 2014 11:26:12 +0200 Message-ID: <1408353973-16663-7-git-send-email-david.marchand@6wind.com> References: <1408353973-16663-1-git-send-email-david.marchand@6wind.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1408353973-16663-1-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" The builtin commands list is now empty, we can remove it. Signed-off-by: David Marchand --- app/test/commands.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test/commands.c b/app/test/commands.c index 0640ac9..b7c6ee0 100644 --- a/app/test/commands.c +++ b/app/test/commands.c @@ -324,9 +324,8 @@ cmdline_parse_ctx_t main_ctx[] = { int commands_init(void) { struct test_command *t; - char builtin_commands[] = ""; char *commands, *ptr; - int commands_len = strlen(builtin_commands) + 1; + int commands_len = 0; TAILQ_FOREACH(t, &commands_list, next) { commands_len += strlen(t->command) + 1; @@ -340,7 +339,8 @@ int commands_init(void) TAILQ_FOREACH(t, &commands_list, next) { ptr += sprintf(ptr, "%s#", t->command); } - ptr += sprintf(ptr, "%s", builtin_commands); + ptr--; + ptr[0] = '\0'; cmd_autotest_autotest.string_data.str = commands; return 0; -- 1.7.10.4