This is an automated email from Gerrit.

"Tarek BOCHKATI <[email protected]>" just uploaded a new patch set to 
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6549

-- gerrit

commit 276e87873e8ed631b500c2cac9d7261b73603969
Author: Tarek BOCHKATI <[email protected]>
Date:   Wed Aug 11 01:14:21 2021 +0100

    helper/command: fix echo return values
    
    the echo command is managed through command handler and not jim_handler
    to be consistent rename the handler from jim_echo to handle_echo
    and update the return values
    
    Fixes: 4747af362de0 (JIM: document "echo" command)
    Change-Id: I5ae87ea802d8430b573fb83daa6b35490b5d5775
    Signed-off-by: Tarek BOCHKATI <[email protected]>

diff --git a/src/helper/command.c b/src/helper/command.c
index e5529d97f..7c29f73e6 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -718,16 +718,18 @@ static int jim_find(Jim_Interp *interp, int argc, Jim_Obj 
*const *argv)
        return JIM_OK;
 }
 
-COMMAND_HANDLER(jim_echo)
+COMMAND_HANDLER(handle_echo)
 {
        if (CMD_ARGC == 2 && !strcmp(CMD_ARGV[0], "-n")) {
                LOG_USER_N("%s", CMD_ARGV[1]);
-               return JIM_OK;
+               return ERROR_OK;
        }
+
        if (CMD_ARGC != 1)
-               return JIM_ERR;
+               return ERROR_FAIL;
+
        LOG_USER("%s", CMD_ARGV[0]);
-       return JIM_OK;
+       return ERROR_OK;
 }
 
 /* Capture progress output and return as tcl return value. If the
@@ -1219,7 +1221,7 @@ static const struct command_registration 
command_builtin_handlers[] = {
        },
        {
                .name = "echo",
-               .handler = jim_echo,
+               .handler = handle_echo,
                .mode = COMMAND_ANY,
                .help = "Logs a message at \"user\" priority. "
                        "Option \"-n\" suppresses trailing newline",

-- 

Reply via email to