summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-04-23 22:32:28 +0000
committerMark Spencer <markster@digium.com>2003-04-23 22:32:28 +0000
commitddf2e8a342f666a04a8cd8adb3b1cf5b55fd4351 (patch)
tree43c0d99a6b1d13dd0b4e65391b43bf3897ec8f0a /apps/app_dial.c
parent67aa337ee779d7211ca5b4c4f6165fe2dfadc63b (diff)
Minor app_dial typo fix
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@898 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 affdeea8b..3219e781b 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -199,12 +199,12 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
ast_log(LOG_NOTICE, "Unable to create local channel for call forward to '%s'\n", tmpchan);
o->stillgoing = 0;
numbusies++;
- }
- if (ast_call(o->chan, tmpchan, 0)) {
+ } else if (ast_call(o->chan, tmpchan, 0)) {
ast_log(LOG_NOTICE, "Failed to dial on local channel for call forward to '%s'\n", tmpchan);
o->stillgoing = 0;
ast_hangup(o->chan);
o->chan = NULL;
+ numbusies++;
}
continue;
}