Switch to audio mode on confmute, too

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@900 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-04-23 23:03:08 +00:00
parent b3543499f0
commit c75324a1a4
1 changed files with 7 additions and 1 deletions

View File

@ -1001,8 +1001,14 @@ static inline int zt_set_hook(int fd, int hs)
static inline int zt_confmute(struct zt_pvt *p, int muted)
{
int x, res;
int x, y, res;
x = muted;
if (p->sig == SIG_PRI) {
y = 1;
res = ioctl(p->subs[SUB_REAL].zfd, ZT_CONFMUTE, &x);
if (res)
ast_log(LOG_WARNING, "Unable to set audio mode on '%d'\n", p->channel);
}
res = ioctl(p->subs[SUB_REAL].zfd, ZT_CONFMUTE, &x);
if (res < 0)
ast_log(LOG_WARNING, "zt confmute(%d) failed on channel %d: %s\n", muted, p->channel, strerror(errno));