From 43388f12208be07191b80a5ed328a87790ecd64a Mon Sep 17 00:00:00 2001 From: David Teigland Date: Fri, 10 Mar 2017 11:49:24 -0600 Subject: [PATCH] commands: fix missing skip condition in coverity fixes Fix for commit 5e6ea4b7 --- tools/command.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/command.c b/tools/command.c index aacc64787..9594284fb 100644 --- a/tools/command.c +++ b/tools/command.c @@ -1506,7 +1506,8 @@ int define_commands(char *run_name) continue; } - log_error("Parsing command defs: can't process input line %s", line_orig); + if (!skip) + log_error("Parsing command defs: can't process input line %s", line_orig); } for (i = 0; i < COMMAND_COUNT; i++) { -- 2.43.5