make * and # become words explicitly in the core tts func (part 2)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5897 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-10-16 16:54:45 +00:00
parent aac58b10f9
commit ee6b7562a8

View File

@ -1238,14 +1238,12 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_speak_text_handle(switch_core_session
*tp++ = 't';
*tp++ = 'a';
*tp++ = 'r';
p++;
} else if (*p == '#') {
*tp++ = 'p';
*tp++ = 'o';
*tp++ = 'u';
*tp++ = 'n';
*tp++ = 'd';
p++;
} else {
*tp++ = *p;
}