Merge pull request #382 in FS/freeswitch from ~SSINYAGIN/freeswitch:bugfix/FS-7927-typo-in-variable-name-eavesdrop_annnounce_macro to master

* commit '0cf60f6c24de01685dd6d755d6b838aec2afa0c1':
  FS-7927 typo in variable name: eavesdrop_annnounce_macro
This commit is contained in:
Mike Jerris 2015-07-31 11:18:44 -05:00
commit 2fa840483e

View File

@ -1880,7 +1880,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session
switch_core_session_get_read_impl(session, &read_impl);
if ((id_name = switch_channel_get_variable(tchannel, "eavesdrop_announce_id"))) {
const char *tmp = switch_channel_get_variable(tchannel, "eavesdrop_annnounce_macro");
const char *tmp = switch_channel_get_variable(tchannel, "eavesdrop_announce_macro");
if (tmp) {
macro_name = tmp;
}