diff options
-rw-r--r-- | src/vat/api_format.c | 2 | ||||
-rw-r--r-- | src/vpp/api/api_main.c | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index b0df35facd4..039fca06891 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -17790,7 +17790,9 @@ api_sw_interface_set_mtu (vat_main_t * vam) static int q_or_quit (vat_main_t * vam) { +#if VPP_API_TEST_BUILTIN == 0 longjmp (vam->jump_buf, 1); +#endif return 0; /* not so much */ } diff --git a/src/vpp/api/api_main.c b/src/vpp/api/api_main.c index 396db25b5cf..97b501e09fa 100644 --- a/src/vpp/api/api_main.c +++ b/src/vpp/api/api_main.c @@ -88,6 +88,7 @@ api_command_fn (vlib_main_t * vm, /* Split input into cmd + args */ this_cmd = cmdp = vam->inbuf; + /* Skip leading whitespace */ while (cmdp < (this_cmd + vec_len (this_cmd))) { if (*cmdp == ' ' || *cmdp == '\t' || *cmdp == '\n') @@ -99,15 +100,18 @@ api_command_fn (vlib_main_t * vm, } argsp = cmdp; + + /* Advance past the command */ while (argsp < (this_cmd + vec_len (this_cmd))) { - if (*argsp != ' ' && *argsp != '\t' && *argsp != '\n') + if (*argsp != ' ' && *argsp != '\t' && *argsp != '\n' && argsp != 0) { argsp++; } else break; } + /* NULL terminate the command */ *argsp++ = 0; while (argsp < (this_cmd + vec_len (this_cmd))) @@ -158,7 +162,7 @@ api_command_fn (vlib_main_t * vm, VLIB_CLI_COMMAND (api_command, static) = { .path = "binary-api", - .short_help = "binary-api <name> [<args>]", + .short_help = "binary-api [help] <name> [<args>]", .function = api_command_fn, }; /* *INDENT-ON* */ |