From: Jeff Lenk Date: Tue, 27 Jul 2010 14:23:56 +0000 (-0500) Subject: FSCORE-641 Windows: Don't report "unknown command" on console when empty command... X-Git-Tag: v1.2-rc1~526^2~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8f9fb565c2e72d3db08a587479dbb97e1ca4eb5;p=thirdparty%2Ffreeswitch.git FSCORE-641 Windows: Don't report "unknown command" on console when empty command has been given --- diff --git a/src/switch_console.c b/src/switch_console.c index 472cdc48d3..e82290bce7 100644 --- a/src/switch_console.c +++ b/src/switch_console.c @@ -1472,11 +1472,12 @@ SWITCH_DECLARE(void) switch_console_loop(void) if (console_readConsole(stdinHandle, keys, (int) sizeof(keys), &read, &key)) { if (console_bufferInput(keys, read, cmd, key)) { if (!strcmp(cmd, "Empty")) { - cmd[0] = '\n'; - cmd[1] = 0; + cmd[0] = 0; } activity = 1; - running = switch_console_process(cmd); + if (cmd[0]) { + running = switch_console_process(cmd); + } memset(cmd, 0, sizeof(cmd)); } }