From: Mark Spencer Date: Wed, 23 Apr 2003 22:32:28 +0000 (+0000) Subject: Minor app_dial typo fix X-Git-Tag: 0.5.0~598 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ddf2e8a342f666a04a8cd8adb3b1cf5b55fd4351;p=thirdparty%2Fasterisk.git Minor app_dial typo fix git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@898 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index affdeea8bf..3219e781b5 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; }