From: Anthony Minessale Date: Tue, 6 Sep 2011 18:56:44 +0000 (-0500) Subject: split on space not colon X-Git-Tag: v1.2-rc1~51^2~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96ddc51faa22efd1ce1809dc27e79ac796ecb62a;p=thirdparty%2Ffreeswitch.git split on space not colon --- diff --git a/src/switch_ivr.c b/src/switch_ivr.c index 22731c1968..56397ede5c 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -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';