From cbc92936f3e6e3f76d8021c04659eac4fd888dde Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 26 Oct 2011 15:35:03 -0400 Subject: [PATCH] allow ;; seperated commands in fs_cli -x --- libs/esl/fs_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c index 7c2f67dc49..84047c62cf 100644 --- a/libs/esl/fs_cli.c +++ b/libs/esl/fs_cli.c @@ -1320,7 +1320,7 @@ int main(int argc, char *argv[]) } if (argv_exec) { const char *err = NULL; - snprintf(cmd_str, sizeof(cmd_str), "api %s\n\n", argv_command); + snprintf(cmd_str, sizeof(cmd_str), "api %s\nconsole_execute: true\n\n", argv_command); if (timeout) { esl_status_t status = esl_send_recv_timed(&handle, cmd_str, timeout); if (status != ESL_SUCCESS) {