summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorJim Dixon <telesistant@hotmail.com>2003-03-23 19:24:59 +0000
committerJim Dixon <telesistant@hotmail.com>2003-03-23 19:24:59 +0000
commiteaa0379d5bfdce57a00865995df2e55f5f4892c9 (patch)
tree8e20fee72def8a863feeaad465c9700ff382eb4c /apps/app_dial.c
parente2c23ff3dbc9bc6163a0a4b0188467bb2f807e21 (diff)
One mo app_dial fix
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@679 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 472f14436..eff1214b3 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -548,13 +548,13 @@ static int dial_exec(struct ast_channel *chan, void *data)
if (!strcmp(chan->type,"Zap"))
{
int x = 2;
- if (tmp->dataquality | tmp->clearchannel) x = 0;
+ if (tmp->dataquality || tmp->clearchannel) x = 0;
ast_channel_setoption(chan,AST_OPTION_TONE_VERIFY,&x,sizeof(char),0);
}
if (!strcmp(peer->type,"Zap"))
{
int x = 2;
- if (tmp->dataquality) x = 0;
+ if (tmp->dataquality || tmp->clearchannel) x = 0;
ast_channel_setoption(peer,AST_OPTION_TONE_VERIFY,&x,sizeof(char),0);
}
hanguptree(outgoing, peer);