split on space not colon

This commit is contained in:
Anthony Minessale 2011-09-06 13:56:44 -05:00
parent 2b7a830d6d
commit 96ddc51faa
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_parse_event(switch_core_session_t *se
if (!strcasecmp(hp->name, "application")) {
app = strdup(hp->value);
data = strchr(app, ':');
data = strchr(app, ' ');
if (data) {
*data++ = '\0';