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:
parent
6ffe5cc920
commit
db5eb288c7
|
@ -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, ':'))) {
|
||||
|
|
|
@ -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, ':'))) {
|
||||
|
|
Loading…
Reference in New Issue