pg: exec file fixes 28/32028/7
authormdr78 <mdr@ashroe.eu>
Tue, 23 Mar 2021 12:40:21 +0000 (12:40 +0000)
committerDave Barach <openvpp@barachs.net>
Wed, 28 Apr 2021 14:58:00 +0000 (14:58 +0000)
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 <mdr@ashroe.eu>
Change-Id: I2f96e7648b9b7d501088eddff7e4a761973e71f4

src/vlib/unix/cli.c

index 6c98867..7b9a231 100644 (file)
@@ -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: