]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 21 Oct 2006 03:19:48 +0000 (03:19 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 21 Oct 2006 03:19:48 +0000 (03:19 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3133 d0543943-73ff-0310-b7d9-9358b9ac24b2

scripts/socket/fsconsole.pl
src/mod/applications/mod_conference/mod_conference.c
src/mod/event_handlers/mod_event_socket/mod_event_socket.c

index db43e319fb0050714746b6e308abd4f6de92308f..cf406f43dc14993de568f85603a29131bf58a79a 100644 (file)
@@ -225,7 +225,7 @@ sub handle_curses_input {
                #see if we got connected at some point
                if(defined($sockets{'localhost'})) {
                        #send the command
-                       $sockets{'localhost'}->put($input);
+                       $sockets{'localhost'}->put("api $input");
                }
        }
 }
index 2ec41e4a1ba0d8a3add7a7b5fa4792fe28edac3d..70c7652b2288919f59b3883aa158e4cdf61a761a 100644 (file)
@@ -2731,7 +2731,7 @@ static switch_api_interface_t conf_api_interface = {
                "<confname> lock\n"
                "<confname> unlock\n"
                "<confname> dial <endpoint_module_name>/<destination>\n"
-               "<confname> transfer <member_id> <conference_name>",
+               "<confname> transfer <member_id> <conference_name>\n",
        /*.next */ 
 };
 
index 4ada1d7fc3730de2621af3ff39d1a97a6a70a221..f85bfd3e02f572298f55d26ba01a0fe91bb830eb 100644 (file)
@@ -555,7 +555,7 @@ static switch_status_t parse_command(listener_t *listener, switch_event_t *event
                acs.bg = 0;
 
                api_exec(NULL, (void *) &acs);
-               snprintf(reply, reply_len, "+OK");
+               //snprintf(reply, reply_len, "+OK");
 
                return SWITCH_STATUS_SUCCESS;
        } else if (!strncasecmp(cmd, "bgapi ", 6)) {