There's no point keeping this function static, and because of this it's
never resolved in backtraces despite appearing quite often since it's
located between the io_handler and various parse functions that may
possiblly trigger issues. So let's remove the static modifier on it.
* displayed into cli.msg. If a keyword parser is NULL and an I/O handler is
* declared, the I/O handler will automatically be used.
*/
-static int cli_process_cmdline(struct appctx *appctx)
+int cli_process_cmdline(struct appctx *appctx)
{
char *args[MAX_CLI_ARGS + 1], *orig, *p, *end, *payload = NULL;
char *end_of_cmdline;