From: Automerge Script Date: Fri, 16 Feb 2007 22:14:32 +0000 (+0000) Subject: automerge commit X-Git-Tag: 1.2.16-netsec~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1063541e58748defc93b8a8cc9d6615c5084153;p=thirdparty%2Fasterisk.git automerge commit git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@55001 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_agent.c b/channels/chan_agent.c index bba17969c5..f1c2de9ae0 100644 --- a/channels/chan_agent.c +++ b/channels/chan_agent.c @@ -616,7 +616,7 @@ static int agent_indicate(struct ast_channel *ast, int condition) int res = -1; ast_mutex_lock(&p->lock); if (p->chan) - res = ast_indicate(p->chan, condition); + res = p->chan->tech->indicate ? p->chan->tech->indicate(p->chan, condition) : -1; else res = 0; ast_mutex_unlock(&p->lock);