From: Tilghman Lesher Date: Tue, 11 Apr 2006 22:39:59 +0000 (+0000) Subject: Bug 6490 - telco intercept should report NOANSWER instead of CHANUNAVAIL X-Git-Tag: 1.2.7~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=829bf52765a3d363334db01cba98ba957fca61a6;p=thirdparty%2Fasterisk.git Bug 6490 - telco intercept should report NOANSWER instead of CHANUNAVAIL git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@19397 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index c323480b26..a7597aa552 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -304,6 +304,8 @@ static void hanguptree(struct localuser *outgoing, struct ast_channel *exception ast_cdr_failed(chan->cdr); \ numnochan++; \ break; \ + case AST_CAUSE_NORMAL_CLEARING: \ + break; \ default: \ numnochan++; \ break; \