5 instead of 4

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12115 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2009-02-17 21:23:29 +00:00
parent 6ffe5cc920
commit db5eb288c7
2 changed files with 2 additions and 2 deletions

View File

@ -1180,7 +1180,7 @@ static switch_status_t js_stream_input_callback(switch_core_session_t *session,
if ((ret = JS_GetStringBytes(JS_ValueToString(cb_state->cx, cb_state->ret)))) {
if (!strncasecmp(ret, "speed", 4)) {
if (!strncasecmp(ret, "speed", 5)) {
char *p;
if ((p = strchr(ret, ':'))) {

View File

@ -1196,7 +1196,7 @@ SWITCH_DECLARE(switch_status_t) CoreSession::process_callback_result(char *resul
}
if (fhp) {
if (!strncasecmp(result, "speed", 4)) {
if (!strncasecmp(result, "speed", 5)) {
char *p;
if ((p = strchr(result, ':'))) {