]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix build parameter mismatch
authorJeff Lenk <jeff@jefflenk.com>
Wed, 20 Jan 2010 18:18:20 +0000 (18:18 +0000)
committerJeff Lenk <jeff@jefflenk.com>
Wed, 20 Jan 2010 18:18:20 +0000 (18:18 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16418 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_console.c

index 95617bb343f841d224978db2cc23bfbc785c108b..9f62bd2ff83e5cb5d111f60edcfd8aa8bea45130 100644 (file)
@@ -1465,7 +1465,7 @@ SWITCH_DECLARE(void) switch_console_loop(void)
                                        cmd[1] = 0;
                                }
                                activity = 1;
-                               running = switch_console_process(cmd, 0);
+                               running = switch_console_process(cmd);
                                memset(cmd, 0, sizeof(cmd));
                        }
                }
@@ -1510,7 +1510,7 @@ SWITCH_DECLARE(void) switch_console_loop(void)
                }
 
                if (cmd[0]) {
-                       running = switch_console_process(cmd, 0);
+                       running = switch_console_process(cmd);
                }
 #endif
        }