]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 25 Sep 2008 00:01:59 +0000 (00:01 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 25 Sep 2008 00:01:59 +0000 (00:01 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9642 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_loopback/mod_loopback.c

index 0986760d0cf11d8a71d920a006aa125bf6e82a09..ffe0e0259b080a1f9019477eaaab22de0d086b45 100644 (file)
@@ -438,6 +438,10 @@ static switch_status_t channel_send_dtmf(switch_core_session_t *session, const s
        tech_pvt = switch_core_session_get_private(session);
        assert(tech_pvt != NULL);
 
+       if (tech_pvt->other_channel) {
+               switch_channel_queue_dtmf(tech_pvt->other_channel, dtmf);
+       }
+
        return SWITCH_STATUS_SUCCESS;
 }