From: Anthony Minessale Date: Mon, 14 Jan 2008 21:52:38 +0000 (+0000) Subject: put a 5 packet pause between digits so you can hear the spaces X-Git-Tag: v1.0-rc1~684 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0dab70f0845f94e3566a415d20a95ccd03b542d5;p=thirdparty%2Ffreeswitch.git put a 5 packet pause between digits so you can hear the spaces git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7224 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 8129df3360..3453c4e464 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -546,7 +546,7 @@ static switch_status_t sofia_read_frame(switch_core_session_t *session, switch_f tech_pvt = (private_object_t *) switch_core_session_get_private(session); switch_assert(tech_pvt != NULL); - if (0 && !(tech_pvt->profile->pflags & PFLAG_RUNNING)) { + if (!(tech_pvt->profile->pflags & PFLAG_RUNNING)) { switch_channel_hangup(tech_pvt->channel, SWITCH_CAUSE_NORMAL_CLEARING); return SWITCH_STATUS_FALSE; }