From: mdr78 Date: Tue, 23 Mar 2021 12:40:21 +0000 (+0000) Subject: pg: exec file fixes X-Git-Tag: v21.10-rc0~170 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=fd4fd0d1853ae7384e7a64c4cad17a3469720b95 pg: exec file fixes A number of the pg commands were being passed the whole exec file, instead of just a line from the file. Type: fix Signed-off-by: Ray Kinsella Change-Id: I2f96e7648b9b7d501088eddff7e4a761973e71f4 --- diff --git a/src/vlib/unix/cli.c b/src/vlib/unix/cli.c index 6c98867253f..7b9a2315910 100644 --- a/src/vlib/unix/cli.c +++ b/src/vlib/unix/cli.c @@ -3352,6 +3352,7 @@ unix_cli_exec (vlib_main_t * vm, char *file_name; int fd; unformat_input_t sub_input; + unformat_input_t _line_input, *line_input = &_line_input; clib_error_t *error; unix_cli_main_t *cm = &unix_cli_main; unix_cli_file_t *cf; @@ -3435,7 +3436,11 @@ unix_cli_exec (vlib_main_t * vm, vec_free (expanded); } - vlib_cli_input (vm, &sub_input, 0, 0); + while (unformat_user (&sub_input, unformat_line_input, line_input)) + { + vlib_cli_input (vm, line_input, 0, 0); + unformat_free (line_input); + } unformat_free (&sub_input); done: