From 96ddc51faa22efd1ce1809dc27e79ac796ecb62a Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 6 Sep 2011 13:56:44 -0500 Subject: [PATCH] split on space not colon --- src/switch_ivr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';